{{--
=====================================================
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 user's physical-card page: the delivery form
(province/city, address, postal code, phone, an
optional Leaflet map pin) that files a request and
charges the fee, plus the history of past requests.
=====================================================
--}}
@extends('layouts.user')
@section('title', __('front.physical_card.title'))
@php use App\Support\Format; @endphp
@section('breadcrumb')
{{ __('front.physical_card.subtitle') }}
{{ __('front.physical_card.pending_body', ['code' => Format::persianDigits($pending->code)]) }}
{{ __('front.physical_card.fee_from_cash') }}
| {{ __('front.physical_card.col_code') }} | {{ __('front.physical_card.col_destination') }} | {{ __('front.physical_card.col_fee') }} | {{ __('front.physical_card.col_date') }} | {{ __('front.physical_card.col_status') }} |
|---|---|---|---|---|
| {{ $req->code }} | {{ $req->destination() }} | @toman($req->fee_amount) | @jalali($req->created_at) | $req->status === \App\Models\PhysicalCardRequest::STATUS_PENDING, 'bg-[#e7f7ee] text-green-600' => $req->status === \App\Models\PhysicalCardRequest::STATUS_ISSUED, 'bg-secondary-50 text-secondary-500' => $req->status === \App\Models\PhysicalCardRequest::STATUS_REJECTED, ])>{{ __('front.physical_card.statuses.'.$req->status) }} |