File: /var/www/html/fieldsblaze-heroku/app/Models/BeatPlan.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class BeatPlan extends Model
{
public $timestamps = false;
protected $table = "tbl_beat_plan";
protected $fillable = [
'BeatPlanId',
'AccountId',
'BeatPlanName',
'CustomerId',
'BeatPlanArea',
'BeatPlanType',
'Status',
'CrmId',
'Created_by',
'Updated_by',
'Updated_at',
'Created_at',
];
function getCreatedByAttribute($value)
{
return ucFirst($value);
}
function getUpdatedByAttribute($value)
{
return ucFirst($value);
}
}