# | {{__("Product")}} | {{__("Order")}} | {{__("Count")}} | {{__("Price")}} |
---|---|---|---|---|
{{$k+1}} {{-- @if(strlen(trim($p->sku)) > 0)--}} {{-- {{$p->sku}}--}} {{-- @else--}} {{-- {{$p->id}}--}} {{-- @endif--}} | {{$p->name}} |
@if($p->pivot->data == null)
{{__("Normal")}}
@else
@foreach(json_decode(json_decode($p->pivot->data,true)['data']) as $k => $pr)
@if(\App\Helpers\getPropLabel($k) !== '' && strlen(\App\Helpers\showMeta($k,$pr) ) > 0)
{{\App\Helpers\getPropLabel($k)}}:
{!! \App\Helpers\showMeta($k,$pr) !!}
@endif
@endforeach
@endif
|
{{$p->pivot->count}} | {{number_format($p->pivot->price_total)}} {{config('app.currency_type')}} |
# | {{__("Product")}} | {{__("Order")}} | {{__("Count")}} | {{__("Price")}} |
---|---|---|---|---|
{{$k+1}} {{-- @if(strlen(trim($p->sku)) > 0)--}} {{-- {{$p->sku}}--}} {{-- @else--}} {{-- {{$p->id}}--}} {{-- @endif--}} | {{$p->name}} ({{__($inv->status)}}) |
@if($p->pivot->data == null)
{{__("Normal")}}
@else
@foreach(json_decode(json_decode($p->pivot->data,true)['data']) as $k => $pr)
@if(\App\Helpers\getPropLabel($k) !== '' && strlen(\App\Helpers\showMeta($k,$pr) ) > 0)
{{\App\Helpers\getPropLabel($k)}}:
{!! \App\Helpers\showMeta($k,$pr) !!}
@endif
@endforeach
@endif
|
{{$p->pivot->count}} | {{number_format($p->pivot->price_total)}} {{config('app.currency_type')}} |
{{__("Title")}} | {{__("Price")}} |
---|---|
{{__("Transport method")}}: | {{$invoice->transport->title}} |
{{__("Transport price")}}: | {{number_format($invoice->transport->price)}} {{config('app.currency_type')}} |
{{__("Tax")}} | 0 {{config('app.currency_type')}} |
{{__("Pay by credit")}} | {{number_format($invoice->credit_price)}} {{config('app.currency_type')}} |
{{__("Discount")}} | @if($invoice->discount == null) 0 {{config('app.currency_type')}} @else {{$invoice->dicsount->discount}} {{config('app.currency_type')}}/% @endif |
{{__("Sum")}} | {{number_format($invoice->total_price)}} {{config('app.currency_type')}} |