| 1 | <?php |
||
| 35 | class Shoutbox extends Model |
||
| 36 | { |
||
| 37 | use Notifiable; |
||
| 38 | use \Venturecraft\Revisionable\RevisionableTrait; |
||
| 39 | protected $table = 'shoutbox'; |
||
| 40 | |||
| 41 | public $timestamps = true; |
||
| 42 | |||
| 43 | protected $fillable = [ |
||
| 44 | 'shout_md', |
||
| 45 | 'shout_html', |
||
| 46 | 'user_id', |
||
| 47 | ]; |
||
| 48 | |||
| 49 | protected $guarded = []; |
||
| 50 | |||
| 51 | public function user() |
||
| 55 | |||
| 56 | public function routeNotificationForDiscord() |
||
| 60 | } |
||
| 61 |