1 | <?php |
||
19 | class Item extends Collection |
||
20 | { |
||
21 | /** |
||
22 | * The Eloquent model a cart is associated with. |
||
23 | * |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $model; |
||
27 | |||
28 | /** |
||
29 | * Magic accessor. |
||
30 | * |
||
31 | * @param string $property property name |
||
32 | * |
||
33 | * @return mixed |
||
34 | */ |
||
35 | 8 | public function __get($property) |
|
56 | |||
57 | /** |
||
58 | * Return the raw ID of item. |
||
59 | * |
||
60 | * @return string |
||
61 | */ |
||
62 | 4 | public function rawId() |
|
66 | } |
||
67 |