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

EmergencyMarker.php 333B

123456789101112131415161718
  1. <?php
  2. namespace App\Model\Module;
  3. use Illuminate\Notifications\Notifiable;
  4. use Jenssegers\Mongodb\Eloquent\Model as Eloquent;
  5. class EmergencyMarker extends Eloquent
  6. {
  7. //
  8. use Notifiable;
  9. protected $connection = 'mongodb';
  10. protected $collection = 'temp_emergency';
  11. protected $guarded = ['_id'];
  12. }