@extends('front::user.layouts.master') @section('user-content')
{{ trans('front::messages.profile.system-cancellation', ['minutes' => option('orders_cancel_time', 60)]) }}
{{ trans('front::messages.profile.deduction-from-the-account') }}
اگر سفارش جدید ندارید میتوانید هزینه ارسال را پرداخت کنید تا سفارش تان را برایتان ارسال کنیم پرداخت هزینه ارسال
| # | شماره سفارش | تاریخ ثبت | عملیات |
|---|---|---|---|
| {{ $loop->iteration }} | {{ $reserved_order->id }} | {{ jdate($reserved_order->created_at) }} | مشاهده |
| # | {{ trans('front::messages.profile.product-name') }} | {{ trans('front::messages.profile.number') }} | {{ trans('front::messages.profile.unit-price') }} | {{ trans('front::messages.profile.total-price') }} | {{ trans('front::messages.profile.discount') }} | {{ trans('front::messages.profile.final-price') }} | {{ trans('front::messages.profile.operation') }} |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} |
@if($item->product)
@else
@endif
{{ $item->title }} @if ($item->get_price) @foreach ($item->get_price->get_attributes as $attribute) @if ($attribute->group->type == 'color') {{ $attribute->group->name }}: {{ $attribute->name }} @else {{ $attribute->group->name }}: {{ $attribute->name }} @endif @endforeach @endif |
{{ $item->quantity }} | {{ trans('front::messages.currency.prefix') }}{{ number_format($item->realPrice()) }} {{ trans('front::messages.currency.suffix') }} | {{ trans('front::messages.currency.prefix') }}{{ number_format($item->quantity * $item->realPrice()) }} {{ trans('front::messages.currency.suffix') }} | {{ $item->discount ? $item->discount . '%' : 0 }} | {{ trans('front::messages.currency.prefix') }}{{ number_format($item->price * $item->quantity) }} {{ trans('front::messages.currency.suffix') }} | @if ($item->product && $item->product->isDownload() && $item->get_price && $item->get_price->isDownloadable()) {{ trans('front::messages.profile.download') }} @endif @if($item->product) {{ trans('front::messages.profile.view') }} @else @endif |
|
{{ trans('front::messages.profile.row') }} |
{{ trans('front::messages.profile.transaction-number') }} |
{{ trans('front::messages.profile.history') }} |
{{ trans('front::messages.profile.amount') }} |
{{ trans('front::messages.profile.condition') }} |
|
{{ $loop->iteration }} |
{{ $transaction->id }} |
{{ jdate($transaction->created_at)->format('%d %B %Y H:i:s') }} |
{{ trans('front::messages.currency.prefix') }} {{ number_format($transaction->amount) }} {{ trans('front::messages.currency.suffix') }} |
@if($transaction->status) {{ trans('front::messages.profile.successful-payment') }} @else {{ trans('front::messages.profile.unsuccessful-payment') }} @endif |