15 lines
192 B
PHP
15 lines
192 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Product extends Model
|
|
{
|
|
protected $fillable = [
|
|
'title',
|
|
'image_url',
|
|
'type',
|
|
];
|
|
}
|