File: /var/www/html/dev-hrms/app/Models/EmployeeTrainingDetail.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class EmployeeTrainingDetail extends Model
{
use HasFactory;
protected $table = 'tbl_employees_training_details';
protected $fillable = [
'id', 'TrainingDetailId', 'EmployeeId', 'EmployeeCode', 'Description', 'TrainingOrganization', 'Venue', 'FromDate', 'ToDate', 'Remarks', 'TrainingCertificatePath', 'OwnerId', 'Status', 'IsDeleted', 'Created_at', 'Created_by', 'Updated_at', 'Updated_by', 'OrgId'
];
function getCreatedByAttribute($value)
{
return ucFirst($value);
}
function getUpdatedByAttribute($value)
{
return ucFirst($value);
}
}