taxation module

This commit is contained in:
2024-04-16 10:54:23 +05:45
parent 6ae0143005
commit 442822e472
16 changed files with 433 additions and 47 deletions

View File

@ -10,7 +10,7 @@ class Employee extends Model
protected $table = 'tbl_employees';
protected $primaryKey = 'id';
protected $guarded = [];
protected $appends = (['full_name']);
protected $appends = ['full_name'];
protected function getFullNameAttribute()
{