{{--
=====================================================
Etebarit - by Gisoo Web Solutions
------------------------------------------------------
Gisoo.net
------------------------------------------------------
Copyright (c) 2026 Gisoo Web Solutions
=====================================================
This code is protected by copyright
=====================================================
File: show.blade.php
------------------------------------------------------
Use: Admin shop detail: an info tab (sales, wallet, recent
transactions) and an edit tab that sets the merchant
fee, identity and status.
=====================================================
--}}
@extends('layouts.admin')
@section('title', $shop->name)
@php use App\Support\Format; @endphp
@section('breadcrumb')
{{ __('admin.shops_manage.no_transactions') }}
@endforelse| {{ __('admin.shops_manage.orders.code') }} | {{ __('admin.shops_manage.orders.customer') }} | {{ __('admin.shops_manage.orders.amount') }} | {{ __('admin.shops_manage.orders.status') }} | {{ __('admin.shops_manage.orders.date') }} |
|---|---|---|---|---|
| {{ $order->code }} | {{ $order->user?->fullName() ?? '—' }} | @toman($order->amount) {{ __('admin.toman') }} | $order->isPaid(), 'bg-[#fff5e6] text-amber-600' => $order->isPending(), 'bg-secondary-50 text-secondary-500' => ! $order->isPaid() && ! $order->isPending(), ])>{{ __('admin.orders.statuses.'.$order->status) }} | @jalaliDateTime($order->created_at) |
| {{ __('admin.shops_manage.orders.empty') }} | ||||
| {{ __('admin.shops_manage.settlement.code') }} | {{ __('admin.shops_manage.settlement.amount') }} | {{ __('admin.shops_manage.settlement.destination') }} | {{ __('admin.shops_manage.settlement.status') }} | {{ __('admin.shops_manage.settlement.date') }} |
|---|---|---|---|---|
| {{ $settlement->code }} | @toman($settlement->amount) | {{ $account?->bankName() ?? '—' }} @fa($account?->maskedCard()) | {{ __("admin.shops_manage.settlement.statuses.{$settlement->status}") }} | @jalaliDateTime($settlement->created_at) |
| {{ __('admin.shops_manage.settlement.empty') }} | ||||