cms-token/@core/app/Brand.php

12 lines
176 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Brand extends Model
{
protected $table ='brands';
protected $fillable =['title','image','url'];
}