| {{ ucfirst(__('laravel-crm::lang.name')) }} | {{ ucfirst(__('laravel-crm::lang.price')) }} | {{ ucfirst(__('laravel-crm::lang.quantity')) }} | {{ ucfirst(__('laravel-crm::lang.amount')) }} | |
|---|---|---|---|---|
| {{ ucfirst(__('laravel-crm::lang.sub_total')) }} | @include('laravel-crm::partials.form.text',[ 'name' => 'sub_total', 'label' => ucfirst(__('laravel-crm::lang.sub_total')), 'type' => 'number', 'prepend' => '', 'attributes' => [ 'wire:model' => 'sub_total', 'step' => .01, 'readonly' => 'readonly' ] ]) | |||
| {{ ucfirst(__('laravel-crm::lang.tax')) }} | @include('laravel-crm::partials.form.text',[ 'name' => 'tax', 'label' => ucfirst(__('laravel-crm::lang.tax')), 'type' => 'number', 'prepend' => '', 'attributes' => [ 'wire:model' => 'tax', 'step' => .01, 'readonly' => 'readonly' ] ]) | |||
| {{ ucfirst(__('laravel-crm::lang.total')) }} | @include('laravel-crm::partials.form.text',[ 'name' => 'total', 'label' => ucfirst(__('laravel-crm::lang.total')), 'type' => 'number', 'prepend' => '', 'attributes' => [ 'wire:model' => 'total', 'step' => .01, 'readonly' => 'readonly' ] ]) |