File: /var/www/html/hrms-production/app/Models/EmployeeGeneralDetail.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class EmployeeGeneralDetail extends Model
{
use HasFactory;
protected $table = 'tbl_employee_general_detail';
protected $fillable = [
'id', 'EmployeeId', 'EmployeeCode', 'EmployeeProfilePath', 'GenderId', 'FatherName', 'FatherAddress', 'HusbandName', 'HusbandAddress', 'ExactHeightOfMeasurement', 'PersonalMarkOfIdentification', 'MaritalStatusId', 'MarriageCertificatePath', 'EmployeeSignPath', 'OwnerId', 'Status', 'IsDeleted', 'Created_at', 'Created_by', 'Updated_at', 'Updated_by', 'OrgId'
];
function getCreatedByAttribute($value)
{
return ucFirst($value);
}
function getUpdatedByAttribute($value)
{
return ucFirst($value);
}
}