{{ __('Product') }} | {{ __('Quantity') }} | {{ __('Unit Price') }} | {{ __('Total') }} | {{ __('Action') }} | |
---|---|---|---|---|---|
@php $slug = $product['slug']; @endphp
{{ $product['title'] }} |
|
@php
$price = floatval($product['price']);
$quantity = floatval($product['quantity']);
$unitPrice = number_format($price / $quantity, 2, '.', '');
$perItemTotal = number_format($product['price'], 2, '.', '');
@endphp
{{ $position == 'left' ? $symbol : '' }}{{ $unitPrice }}{{ $position == 'right' ? $symbol : '' }} | {{ $position == 'left' ? $symbol : '' }}{{ $perItemTotal }}{{ $position == 'right' ? $symbol : '' }} |