Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Notification.php 435B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Model\Module;
  3. use Illuminate\Notifications\Notifiable;
  4. use Jenssegers\Mongodb\Eloquent\Model as Eloquent;
  5. class Notification extends Eloquent
  6. {
  7. //
  8. use Notifiable;
  9. protected $connection = 'mongodb';
  10. protected $collection = 'notifasi';
  11. protected $guarded = ['_id'];
  12. public function staff()
  13. {
  14. return $this->belongsToMany('App\Model\Staff');
  15. }
  16. }