1 | <?php |
||
11 | class Products extends Model |
||
12 | { |
||
13 | /** |
||
14 | * Model table. |
||
15 | * |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $table = 'products'; |
||
19 | |||
20 | /** |
||
21 | * Mass-assign fields |
||
22 | * |
||
23 | * @var array |
||
24 | */ |
||
25 | protected $fillable = ['name', 'category_id']; |
||
26 | |||
27 | |||
28 | /** |
||
29 | * Product category relation. |
||
30 | * |
||
31 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
32 | */ |
||
33 | public function category() |
||
37 | } |
||
38 |