Skip to content

Commit

Permalink
document item line sytling..
Browse files Browse the repository at this point in the history
  • Loading branch information
cuneytsenturk committed Jan 5, 2021
1 parent eaa69e6 commit 1deff6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/views/components/documents/form/items.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions resources/views/components/documents/form/line-item.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class="form-control"

@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"
Expand All @@ -98,7 +98,7 @@ class="form-control text-center p-0"

@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') }}
Expand Down

0 comments on commit 1deff6e

Please sign in to comment.