*/ protected $fillable = [ 'incoming_id', 'taxable_amount', 'amount', 'percentage', 'currency', ]; /** * Get the incoming invoice this tax belongs to. */ public function incoming(): BelongsTo { return $this->belongsTo(Incoming::class); } }