{{--
=====================================================
Etebarit - by Gisoo Web Solutions
------------------------------------------------------
Gisoo.net
------------------------------------------------------
Copyright (c) 2026 Gisoo Web Solutions
=====================================================
This code is protected by copyright
=====================================================
File: show.blade.php
------------------------------------------------------
Use: A single credit request's status page, ported from
the approved design: the status hero (with the 48h
fee countdown + pay action while awaiting fee) and
the plan / collateral / request detail sections.
Never names a shop or a product.
=====================================================
--}}
@extends('layouts.user')
@section('title', __('front.credit.title'))
@section('breadcrumb')
{{ __('front.credit.subtitle') }}
{{ __("front.credit.status.{$displayStatus}_desc") }}
{{-- While under review, watch for the operator's decision: reloads on change, plus a manual refresh. --}} @if ($status === CreditRequest::STATUS_PENDING){{ __('front.live_status.auto_hint') }}
{{ __('front.live_status.unchanged') }}
{{ __('front.credit.transactions_empty') }}
@else| {{ __('front.credit.tx_columns.reason') }} | {{ __('front.credit.tx_columns.code') }} | {{ __('front.credit.tx_columns.date') }} | {{ __('front.credit.tx_columns.amount') }} |
|---|---|---|---|
| {{ $entry->reasonLabel('front.credit.reasons') }} @if ($entry->bucket === \App\Models\WalletEntry::BUCKET_INSTALLMENT) {{ __('front.credit.bucket_installment') }} @endif | {{ $entry->transaction?->code ?? '—' }} | @jalaliDateTime($entry->created_at) | {{-- RTL reading order: the figure first, the unit after it. Only the signed number itself is an LTR run. --}}{{ $entry->isCredit() ? '+' : '−' }}@toman($entry->amount) {{ __('front.credit.toman') }} |