File: /var/www/html/fieldsblaze-heroku/app/Models/OrderItem.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class OrderItem extends Model
{
public $timestamps = false;
protected $table = "tbl_order_item";
protected $fillable = [
'OrderId',
'ProductId',
'CustomerId',
'Name',
'ListPrice',
'ApplyPromo',
'IsDeleted',
'PriceBookEntry',
'Product',
'ProductFamily',
'Quantity',
'TotalPrice',
'UnitPrice',
'Status',
'DiscountType',
'Discount',
'AmountWithGST',
'CrmId',
'Created_by',
'Created_at',
'Updated_by',
'Updated_at',
'DeviceName',
];
function getCreatedByAttribute($value)
{
return ucFirst($value);
}
public function getUpdatedByAttribute($value)
{
return ucFirst($value);
}
}