document item line sytling..

This commit is contained in:
Cüneyt Şentürk 2021-01-05 10:57:24 +03:00
parent eaa69e678e
commit 1deff6e5b4
2 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@
@stack('quantity_th_start')
@if (!$hideQuantity)
<th class="text-center border-top-0 border-right-0 border-bottom-0" style="padding-right: 5px;">
<th class="text-center pl-2 border-top-0 border-right-0 border-bottom-0">
{{ trans($textQuantity) }}
</th>
@endif

View File

@ -73,7 +73,7 @@
@stack('quantity_td_start')
@if (!$hideQuantity)
<td class="pb-3 pl-0 pr-0 border-bottom-0">
<td class="pb-3 pl-0 pr-2 border-bottom-0">
<div>
@stack('quantity_input_start')
<input type="text"
@ -98,7 +98,7 @@
@stack('price_td_start')
@if (!$hidePrice)
<td class="pb-3 pl-2 pr-0 border-bottom-0" style="padding-right: 5px; padding-left: 5px;">
<td class="pb-3 pl-0 pr-0 border-bottom-0" style="padding-right: 5px; padding-left: 5px;">
<div>
@stack('price_input_start')
{{ Form::moneyGroup('price', '', '', ['required' => 'required', 'row-input' => 'true', 'v-model' => 'row.price', 'v-error' => 'form.errors.get(\'items.\' + index + \'.price\')', 'v-error-message' => 'form.errors.get(\'items.\' + index + \'.price\')' , 'data-item' => 'price', 'currency' => $currency, 'dynamic-currency' => 'currency', 'change' => 'row.price = $event; form.errors.clear(\'items.\' + index + \'.price\'); onCalculateTotal'], 0.00, 'text-right input-price p-0') }}