@foreach ($order->products as $i => $order_product)
{{ $i + 1 }} |
{{ $order_product->product->name ?? '-' }} |
{{ $order_product->service->name ?? '-' }} |
{{ $order_product->appMethod->name ?? '-' }} |
{{ ($order_product->amount ?? '0') . ' ' .
($order_product->metric?->value ?? $order_product->product->metric?->value ?? 'N/A') }}
|
{{ $order_product->dosage ?? $order_product->product->dosage ?? '-' }}
|
{{$order_product->lot->registration_number ?? $order_product->possible_lot ?? '-' }} |
{{--
{{ __('buttons.propagate') }}
--}}
{{ __('buttons.delete') }}
|
@endforeach