Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718
  1. <?php
  2. namespace App\Model\Module;
  3. use Jenssegers\Mongodb\Eloquent\Model as Eloquent;
  4. class CurrentLocation extends Eloquent
  5. {
  6. //
  7. protected $connection = 'mongodb';
  8. protected $collection = 'current_location';
  9. protected $guarded = ['_id'];
  10. public function staff(){
  11. return $this->belongsTo('App\Model\Staff');
  12. }
  13. }