Raffales-LMS/app/Modules/Models/LeadCategory/LeadCategory.php
2024-04-16 15:43:24 +05:45

19 lines
341 B
PHP

<?php
namespace App\Modules\Models\LeadCategory;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class LeadCategory extends Model
{
use HasFactory;
protected $table = 'tbl_leadcategories';
protected $fillable = [
'name',
'color_code',
'status',
];
}