@extends('admin.layouts.container') @section('content')
| {{ __('ratings::ratings.type') }} | {{ __('ratings::ratings.rating') }} | {{ __('ratings::ratings.comment_2') }} |
|---|---|---|
| {{ __("ratings::ratings.type_$rating->type") }} | @for($f=1; $f<=5; $f++) @if($f <= ($rating->rating ?? 0)) @else @endif @endfor | {{ $rating->comment }} |
| {{ __('orders::orders.order_id') }} : {{ $order->id }} | {{ __('orders::orders.customer_name') }} : {{ $order->user->name ?? $order->user->username ?? "-" }} | |
| {{ __('orders::orders.customer_email') }} : {{ $order->user->email ?? "-" }} | --}}{{ __('orders::orders.customer_phone') }} : {{ $order->user->phone ?? "-" }} | {{ __('orders::orders.coupon') }} : {{ $order->coupon->name ?? "-" }} |
| {{ __('orders::orders.order_date') }} : {{ $order->created_at }} | {{ __('orders::orders.payment_method') }} : {{ $order->paymentMethod->currentDescription->title ?? "-" }} | |
| {{ __('orders::orders.payment_status') }} : {{ __("general.payment_status_$order->payment_status") }} | {{ __('orders::orders.app_commission_from_provider') }} : {{ $order->app_commission_from_provider ." ".$currency_code }} | |
| {{ __('orders::orders.provider_commission') }} : {{ $order->provider_commission ." ".$currency_code }} | {{ __('orders::orders.app_commission_from_rep') }} : {{ $order->app_commission_from_rep ." ".$currency_code }} | |
| {{ __('orders::orders.rep_commission') }} : {{ $order->rep_commission ." ".$currency_code }} | {{ __('orders::orders.app_commission') }} : {{ $order->app_commission ." ".$currency_code }} | |
| {{ __('orders::orders.coupon') }} : {{ $order->coupon->name ?? "-" }} | {{ __('orders::orders.rep_name') }} : {{ $order->rep->name ?? "-" }} | |
| {{ __('orders::orders.provider_name') }} : {{ $order->provider->name ?? "-" }} | {{ __('orders::orders.status') }} : {{ getOrderStatusName($order->status) }} | |
| {{ __('orders::orders.notes') }} : {{ $order->notes ?? "-" }} | ||
| {{ __('orders::orders.product_name') }} | {{ __('orders::orders.price') }} | {{ __('orders::orders.addons_price') }} | {{ __('orders::orders.quantity') }} | {{ __('orders::orders.total') }} | {{ __('orders::orders.details') }} |
|---|---|---|---|---|---|
| {{ $product->currentDescription->title ?? "" }} | {{ $product->pivot->price." ".$currency_name }} | {{ $product->pivot->addons_price ? $product->pivot->addons_price." ".$currency_name : '-' }} | {{ $product->pivot->qty }} | {{ $product->pivot->total." ".$currency_name }} | @if($product->orderProductAddonsByOrderId($order->id)->count()) @else {{ __('general.not_exist') }} @endif |
| {{ __('orders::orders.source_image') }} | {{ __('orders::orders.source_name') }} | {{ __('orders::orders.price') }} | {{ __('orders::orders.quantity') }} | {{ __('orders::orders.total') }} | {{ __('orders::orders.details') }} |
|---|---|---|---|---|---|
|
|
{{ $source->currentDescription->title ?? "" }} | {{ $source->pivot->price." ".$currency_name }} {{-- $source->pivot->unit_price." ".$currency_name --}} | {{ $source->pivot->qty }} | {{ $source->pivot->total." ".$currency_name }} |
| {{ __('orders::orders.subtotal') }} | {{ $order->subtotal ." ".$currency_name }} |
| {{ __('orders::orders.delivery_charges') }} | {{ $order->delivery_charges ." ".$currency_name }} |
| {{ __('orders::orders.tax_amount') }} | {{ $order->tax_amount ." ".$currency_name }} |
| {{ __('orders::orders.coupon_discount') }} | {{ $order->coupon_discount ." ".$currency_name }} |
| {{ __('orders::orders.total_amount') }} | {{ $order->total ." ".$currency_name }} |
| {{ __('orders::orders.city') }} | {{ __('orders::orders.address_on_map') }} | {{ __('orders::orders.street_name') }} | {{ __('orders::orders.building_name') }} | {{ __('orders::orders.building_number') }} | {{ __('orders::orders.distinct_mark') }} |
|---|---|---|---|---|---|
| {{ $order->address->city->currentDescription->title ?? "" }} | {{ $order->address->street_name ?? "" }} | {{ $order->address->building_name ?? "" }} | {{ $order->address->building_number ?? "" }} | {{ $order->address->distinct_mark ?? "-" }} |