@extends('admin.layout') @section('content')
{{ trans('labels.Qty') }} | {{ trans('labels.Image') }} | {{ trans('labels.ProductName') }} | {{ trans('labels.ProductModal') }} | {{ trans('labels.Options') }} | {{ trans('labels.Price') }} |
---|---|---|---|---|---|
{{ $products->products_quantity }} |
@if(count($products->attribute) >0)
@if(!empty($products->attribute[0]->image))
@else @endif @else @endif |
{{ $products->products_name }} |
{{ $products->products_model }} |
@foreach($products->attribute as $attributes)
{{ trans('labels.Name') }}: {{ $attributes->products_options }} {{ trans('labels.Value') }}: {{ $attributes->products_options_values }} {{-- {{ trans('labels.Price') }}: {{ $data['currency'][19]->value }}{{ $attributes->options_values_price }} --}} @endforeach |
{{ $data['currency'][19]->value }}{{ $products->final_price }} |
{{ trans('labels.PaymentMethods') }}:
{{ str_replace('_',' ', $data['orders_data'][0]->payment_method) }}
@if(!empty($data['orders_data'][0]->coupon_code)){{ trans('labels.Coupons') }}:
{{ trans('labels.Code') }} | {{ trans('labels.Amount') }} |
---|---|
{{ $couponData->code}} | {{ $couponData->amount}} @if($couponData->discount_type=='percent_product') ({{ trans('labels.Percent') }}) @elseif($couponData->discount_type=='percent') ({{ trans('labels.Percent') }}) @elseif($couponData->discount_type=='fixed_cart') ({{ trans('labels.Fixed') }}) @elseif($couponData->discount_type=='fixed_product') ({{ trans('labels.Fixed') }}) @endif |
{{ trans('labels.Orderinformation') }}:
@if(trim($data['orders_data'][0]->order_information) != '[]' or !empty($data['orders_data'][0]->order_information)) {{ $data['orders_data'][0]->order_information }} @endif
{{ trans('labels.Subtotal') }}: | {{ $data['currency'][19]->value }}{{ $data['subtotal'] }} |
---|---|
{{ trans('labels.Tax') }}: | {{ $data['currency'][19]->value }}{{ $data['orders_data'][0]->total_tax }} |
{{ trans('labels.ShippingCost') }}: | {{ $data['currency'][19]->value }}{{ $totalShippingPrice }} |
{{ trans('labels.DicountCoupon') }}: | {{ $data['currency'][19]->value }}{{ $data['orders_data'][0]->coupon_amount }} |
{{ trans('labels.Total') }}: | {{ $data['currency'][19]->value }}{{ $total_price }} |
{{ trans('labels.ChangeStatus') }}:
{{ trans('labels.OrderHistory') }}
{{ trans('labels.Date') }} | {{ trans('labels.Status') }} | {{ trans('labels.Comments') }} |
---|---|---|
03-05-2025 | @if($orders_status_history->orders_status_id==1) @elseif($orders_status_history->orders_status_id==2) @elseif($orders_status_history->orders_status_id==3) @else @endif {{ $orders_status_history->orders_status_name }} | {{ $orders_status_history->comments }} |