File: /var/www/html/dev-hrms/app/Models/EmployeeEarnedCommutedLeave.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class EmployeeEarnedCommutedLeave extends Model
{
use HasFactory;
protected $table = 'tbl_employee_earned_commuted_leave';
protected $fillable = [
'EmployeeELCLId', 'EmployeeId', 'FromDate', 'ToDate', 'EarnedLeave', 'BalanceEarnedLeave', 'CommutedLeave', 'BalanceCummetedLeave', 'Created_at', 'Updated_at', 'Created_by', 'Updated_by', 'Status', 'IsDeleted'
];
function getCreatedByAttribute($value)
{
return ucFirst($value);
}
function getUpdatedByAttribute($value)
{
return ucFirst($value);
}
}