belongsTo('App\Models\Expense\Bill'); } public function item() { return $this->belongsTo('App\Models\Item\Item'); } public function tax() { return $this->belongsTo('App\Models\Setting\Tax'); } /** * Convert price to double. * * @param string $value * @return void */ public function setPriceAttribute($value) { $this->attributes['price'] = (double) $value; } /** * Convert total to double. * * @param string $value * @return void */ public function setTotalAttribute($value) { $this->attributes['total'] = (double) $value; } }