Files
kulakpos_web/app/Models/BusinessCategory.php

27 lines
432 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class BusinessCategory extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name',
'status',
'description',
];
protected $casts = [
'status' => 'integer'
];
}