Add price taxed
This commit is contained in:
@@ -1,34 +1,29 @@
|
||||
<div class="row">
|
||||
<div class="col-4">
|
||||
{{ $tariff['ref'] ?? null }}
|
||||
</div>
|
||||
<div class="col-8">
|
||||
{{ $tariff['name'] ?? null }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
@component('components.card', ['title' => $tariff['name'] ?? null ])
|
||||
@foreach (($tariff['price_lists'] ?? []) as $price_list)
|
||||
{{ $price_list['sale_channel']['name'] }}
|
||||
{{ $price_list['name'] }}
|
||||
<div class="row mb-3">
|
||||
<div class="col-12">
|
||||
<b>Canal de vente</b> : {{ $price_list['sale_channel']['name'] }}<br>
|
||||
<b>Nom de liste de prix </b> : {{ $price_list['name'] }}
|
||||
@if ($price_list['price_list_values'] ?? false)
|
||||
<table class="table table-bordered table-hover table-striped w-100">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Seuil</th>
|
||||
<th>Prix</th>
|
||||
<th>Prix HT</th>
|
||||
<th>Prix TTC</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@foreach (($price_list['price_list_values'] ?? []) as $price_value)
|
||||
<tr>
|
||||
<td>{{ $price_value['quantity'] }}</td>
|
||||
<td class="text-right">{{ $price_value['price'] }}</td>
|
||||
<td class="text-right">{{ $price_value['price_taxed'] }}</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</table>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
@endcomponent
|
||||
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
<div class="row">
|
||||
<div class="row mb-3">
|
||||
<div class="col-12">
|
||||
|
||||
{{ $variation['name'] }}
|
||||
|
||||
<h4>{{ $variation['name'] }}</h4>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user