File: /var/www/html/hrms-production/app/Models/PreviousJobDetail.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class PreviousJobDetail extends Model
{
use HasFactory;
protected $table = 'tbl_employees_previous_job_details';
protected $fillable = [
'id', 'PreviousJobDetailId', 'EmployeeId', 'EmployeeCode', 'DDOId', 'ControllingOfficerId', 'SanctionPostId', 'PayScaleId', 'PayBandId', 'GradePayId', 'PayLevelId', 'PayLevelAmount', 'PayLevelAmountId', 'StartDate', 'EndDate', 'Station', 'ReasonForLeavingJob', 'ActualWorkPlaceId', 'DepartmentId', 'GroupId', 'CadreId', 'DesignationId', 'DearnessAllowance', 'InService', 'LastPayCertificatePath', 'SubmittedResignationPath', 'Status', 'IsDeleted', 'Created_at', 'Created_by', 'Updated_at', 'Updated_by', 'OrgId'
];
function getCreatedByAttribute($value)
{
return ucFirst($value);
}
function getUpdatedByAttribute($value)
{
return ucFirst($value);
}
}