/home/techb158/ileadtechnology.com/SSM/app/Models/inventory
Edit: /home/techb158/ileadtechnology.com/SSM/app/Models/inventory/StockPurchaseDetail.php (1407B)
'array'];
protected $primaryKey = 'id';
protected $table = 'stock_purchase_details';
protected static $logName = 'stock_purhcase_detail';
protected static $logFillable = true;
protected static $logOnlyDirty = true;
protected static $ignoreChangedAttributes = ['updated_at'];
public function purchase()
{
return $this->belongsTo('App\Models\Inventory\StockPurchase', 'stock_purchase_id');
}
public function item()
{
return $this->belongsTo('App\Models\Inventory\StockItem', 'stock_item_id');
}
public function getOption(string $option)
{
return array_get($this->options, $option);
}
public function scopeInfo($q)
{
return $q->with('items');
}
public function scopeFilterById($q, $id)
{
if (! $id) {
return $q;
}
return $q->where('id', '=', $id);
}
}