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