| 1 | <?php |
||
| 8 | class NotificationCategory extends Model |
||
| 9 | { |
||
| 10 | protected $table = 'notification_categories'; |
||
| 11 | |||
| 12 | protected $fillable = ['name', 'text']; |
||
| 13 | |||
| 14 | public $timestamps = false; |
||
| 15 | |||
| 16 | public function notifications() |
||
| 23 | |||
| 24 | public function categories() |
||
| 33 | |||
| 34 | public function scopeByName(Builder $query, $name) |
||
| 38 | } |
||
| 39 |