| 1 | <?php |
||
| 14 | class Favorite extends Model |
||
| 15 | { |
||
| 16 | use GlobalScope; |
||
| 17 | /** |
||
| 18 | * The database table used by the model. |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $table = 'favorites'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Attributes that should be mass-assignable. |
||
| 26 | * |
||
| 27 | * @var array |
||
| 28 | */ |
||
| 29 | protected $fillable = ['favoriteable_type', 'favoriteable_id', 'user_id']; |
||
| 30 | |||
| 31 | protected static function boot() |
||
| 35 | |||
| 36 | public function favoriteable() |
||
| 40 | |||
| 41 | public function user() |
||
| 45 | } |
||
| 46 |