| Current Path : /home/users/unlimited/www/mpos.codeskitter.site/app/Models/ |
| Current File : /home/users/unlimited/www/mpos.codeskitter.site/app/Models/BusinessCategory.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',
];
}