File: /var/www/html/dev-hrms/app/Models/EmployeeQualifications.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class EmployeeQualifications extends Model
{
use HasFactory;
protected $table = 'tbl_employee_qualifications';
protected $fillable = [
'EmployeeQualificationId', 'EmployeeId', 'EmployeeCode', 'EducationType', 'Education', 'StreamSubject', 'BoardUniversityName', 'PassingYear', 'Marks', 'Grade', 'Percentage', 'EducationAcquringStatus', 'Remarks', 'Attachment', 'Status', 'IsDeleted', 'Created_at', 'Created_by', 'Updated_at', 'Updated_by', 'OrgId', 'OwnerId'
];
function getCreatedByAttribute($value)
{
return ucFirst($value);
}
function getUpdatedByAttribute($value)
{
return ucFirst($value);
}
}