File: /var/www/html/fieldsblaze-heroku/app/Models/VisitCustomer.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class VisitCustomer extends Model
{
protected $table = "tbl_visit_customer";
protected $fillable = [
'VisitCustomerId',
'VisitId',
'CustomerId',
'CustomerScheduleTime',
'VisitDate',
'ActualEntry',
'ActualExit',
'EntryPoint',
'ExitPoint',
'CustomerVisitStatus',
'Status',
'IsDeleted',
'Created_by',
'Updated_by',
'Updated_at',
'Created_at',
];
function getCreatedByAttribute($value)
{
return ucFirst($value);
}
function getUpdatedByAttribute($value)
{
return ucFirst($value);
}
}