Files

30 lines
501 B
PHP
Raw Permalink Normal View History

2026-03-15 17:08:23 +07:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Brand extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'brandName',
'description',
'business_id',
'icon',
'status',
];
protected $casts = [
'business_id' => 'integer',
'status' => 'integer'
];
}