Files

22 lines
440 B
PHP
Raw Permalink Normal View History

2026-05-04 23:04:09 +07:00
<?php
namespace Modules\HrmAddon\App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class Designation extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*/
protected $fillable = ['business_id', 'name', 'description', 'status'];
protected $casts = [
'business_id' => 'integer',
'status' => 'integer',
];
}