1 | <?php |
||
11 | trait EloquentTrait |
||
12 | { |
||
13 | /** |
||
14 | * @var string $key |
||
15 | */ |
||
16 | protected $key = 'id'; |
||
17 | |||
18 | /** |
||
19 | * @var Model $model |
||
20 | */ |
||
21 | protected $model; |
||
22 | |||
23 | /** |
||
24 | * @var string $uid |
||
25 | */ |
||
26 | protected $uid; |
||
27 | |||
28 | /** |
||
29 | * @param Model $model |
||
30 | * @return $this |
||
31 | */ |
||
32 | 8 | public function model(Model $model) |
|
39 | } |
||
40 |