@extends('layouts.admin') @section('title', trans('general.title.edit', ['type' => trans_choice('general.invoices', 1)])) @section('content')
{{ trans('general.actions') }} | {{ trans('general.name') }} | {{ trans('invoices.quantity') }} | {{ trans('invoices.price') }} | {{ trans_choice('general.taxes', 1) }} | {{ trans('invoices.total') }} |
---|---|---|---|---|---|
{!! Form::select('item[' . $item_row . '][tax_id]', $taxes, $item->tax_id, ['id'=> 'item-tax-'. $item_row, 'class' => 'form-control select2', 'placeholder' => trans('general.form.enter', ['field' => trans_choice('general.taxes', 1)])]) !!} | @money($item->total, $invoice->currency_code, true) | ||||
{!! Form::select('item[' . $item_row . '][tax_id]', $taxes, null, ['id'=> 'item-tax-'. $item_row, 'class' => 'form-control select2', 'placeholder' => trans('general.form.select.field', ['field' => trans_choice('general.taxes', 1)])]) !!} | 0 | ||||
{{ trans('invoices.sub_total') }} | 0 | ||||
{{ trans_choice('general.taxes', 1) }} | 0 | ||||
{{ trans('invoices.total') }} | 0 |