File: /var/www/html/fieldsblaze-heroku/app/Models/PriceBook.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class PriceBook extends Model
{
public $timestamps = false;
protected $table = "tbl_price_book";
protected $fillable = [
'PriceBookId',
'PriceBookName',
'Description',
'Status',
'Created_by',
'Created_at',
'Updated_by',
'Updated_at',
'IsDeleted',
];
function getCreatedByAttribute($value)
{
return ucFirst($value);
}
function getUpdatedByAttribute($value)
{
return ucFirst($value);
}
}