File: /var/www/html/fieldsblaze-heroku/app/Models/BeatPlanCustomer.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class BeatPlanCustomer extends Model
{
public $timestamps = false;
protected $table = "tbl_beat_plan_customers";
protected $fillable = [
'BeatPlanCustomerId', 'BeatPlanId', 'CustomerId', 'CustomerType', 'CustomerScheduleTime', '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);
}
}