123456789101112131415161718 |
- <?php
-
- namespace App\Model\Module;
-
- use Jenssegers\Mongodb\Eloquent\Model as Eloquent;
-
- class CurrentLocation extends Eloquent
- {
- //
- protected $connection = 'mongodb';
- protected $collection = 'current_location';
-
- protected $guarded = ['_id'];
-
- public function staff(){
- return $this->belongsTo('App\Model\Staff');
- }
- }
|