1 | <?php |
||
25 | class Cart extends Model |
||
26 | { |
||
27 | /** |
||
28 | * The attributes that aren't mass assignable. |
||
29 | * |
||
30 | * @var array |
||
31 | */ |
||
32 | protected $guarded = ['id']; |
||
33 | |||
34 | /** |
||
35 | * Add a deleting listener to delete all items. |
||
36 | * |
||
37 | * @return void |
||
38 | */ |
||
39 | protected static function boot() |
||
47 | |||
48 | /** |
||
49 | * The items in this cart instance. |
||
50 | * |
||
51 | * @return \Illuminate\Database\Eloquent\Relations\HasMany |
||
52 | */ |
||
53 | public function items() |
||
57 | } |
||
58 |