20 lines
297 B
PHP
20 lines
297 B
PHP
|
<?php
|
||
|
|
||
|
namespace App;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class Category extends Model
|
||
|
{
|
||
|
//
|
||
|
protected $fillable = [
|
||
|
"category_id",
|
||
|
"category_name",
|
||
|
];
|
||
|
//
|
||
|
public function product()
|
||
|
{
|
||
|
return $this->hasMany('App\Product', 'category_id');
|
||
|
}
|
||
|
}
|