File: /var/www/html/hrms-production/app/Models/EmployeeAddress.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class EmployeeAddress extends Model
{
use HasFactory;
protected $table = 'tbl_employees_address';
protected $fillable = [
'id', 'EmployeesAddressId', 'EmployeeId', 'HomeTownDeclaration', 'PermanentStreetAddress', 'PermanentCountry', 'PermanentState', 'PermanentCity', 'PermanentDistrict', 'PermanentPinCode', 'SameAsPermanent', 'CurrentStreetAddress', 'CurrentCountry', 'CurrentState', 'CurrentCity', 'CurrentDistrict', 'CurrentPinCode', 'Created_at', 'Created_by', 'Updated_at', 'Updated_by', 'Status', 'IsDeleted', 'OrgId', 'OwnerId'
];
function getCreatedByAttribute($value)
{
return ucFirst($value);
}
function getUpdatedByAttribute($value)
{
return ucFirst($value);
}
}