{{--
=====================================================
Etebarit - by Gisoo Web Solutions
------------------------------------------------------
Gisoo.net
------------------------------------------------------
Copyright (c) 2026 Gisoo Web Solutions
=====================================================
This code is protected by copyright
=====================================================
File: index.blade.php
------------------------------------------------------
Use: The buyer's gateway orders. An order shows its id,
its shop and the transactions that paid it - never
what was bought.
=====================================================
--}}
@extends('layouts.user')
@section('title', __('front.orders.title'))
@section('breadcrumb')
{{ __('front.orders.subtitle') }}
| {{ __('front.orders.columns.code') }} | {{ __('front.orders.columns.shop') }} | {{ __('front.orders.columns.amount') }} | {{ __('front.orders.columns.method') }} | {{ __('front.orders.columns.date') }} | {{ __('front.orders.columns.status') }} | {{ __('front.orders.columns.details') }} |
|---|---|---|---|---|---|---|
| {{ $order->code }} | {{ $order->shop->name }} | @toman($order->amount) {{ __('front.orders.toman') }} | {{ $parts->isEmpty() ? __('front.orders.transaction_count_none') : __('front.orders.transaction_count', ['count' => \App\Support\Format::persianDigits((string) $parts->count())]) }} | @jalaliDateTime($order->created_at) | $order->isPaid(), 'bg-[#fff5e6] text-amber-600' => $order->isPending(), 'bg-secondary-50 text-secondary-500' => ! $order->isPaid() && ! $order->isPending(), ])>{{ __("front.orders.statuses.{$order->status}") }} | {{ __('front.orders.details') }} |
| {{ __('front.orders.empty') }} | ||||||
{{ __('front.orders.no_transactions') }}