@extends('layouts.admin.app') @section('title', translate('Order Details')) @push('css_or_js') @endpush @section('content')
{{ translate('SL') }} | {{ translate('Item Details') }} | {{ translate('Quantity') }} | @if ($order['order_type'] == 'gas_refill'){{ translate('Type') }} | @endif{{ translate('Price') }} | {{ translate('Total_price') }} |
---|---|---|---|---|---|
{{ $loop->iteration }} |
{{$order['order_type'] == 'gas_refill' ? $item_name['name'] : $detail->service_name }} |
{{ $detail->quantity }} | @if ($order['order_type'] == 'gas_refill'){{ $detail->item_type ?? 'N/A' }} | @endif@php($amount = $detail['price'] * $detail['quantity']) {{ \App\CentralLogics\Helpers::set_symbol($detail['price']) }} | {{ \App\CentralLogics\Helpers::set_symbol($amount - $tot_discount ) }} |