@extends('layouts.banking') @section('title', 'عرض تفاصيل العملة') @section('content')
تفاصيل العملة: {{ $currency->name }}
اسم العملة:
{{ $currency->name }}
رمز العملة:
{{ $currency->code }}
الرمز المختصر:
{{ $currency->symbol }}
المنازل العشرية:
{{ $currency->decimal_places }}
العملة الأساسية:
@if($currency->is_base_currency) نعم @else لا @endif
الحالة:
@if($currency->status == 'active') نشط @else غير نشط @endif
ملاحظات:
{{ $currency->notes ?: 'لا توجد ملاحظات' }}
تاريخ الإنشاء:
{{ $currency->created_at->format('Y-m-d H:i') }}

@if($exchangeRatesFrom->count() > 0)
أسعار الصرف من {{ $currency->code }} إلى العملات الأخرى:
@foreach($exchangeRatesFrom as $rate) @endforeach
العملة سعر الصرف سعر الشراء سعر البيع تاريخ السريان الحالة
{{ $rate->toCurrency->code }} ({{ $rate->toCurrency->name }}) {{ number_format($rate->rate, $rate->toCurrency->decimal_places) }} {{ number_format($rate->buy_rate, $rate->toCurrency->decimal_places) }} {{ number_format($rate->sell_rate, $rate->toCurrency->decimal_places) }} {{ $rate->effective_date->format('Y-m-d') }} @if($rate->status == 'active') نشط @else غير نشط @endif
@endif @if($exchangeRatesTo->count() > 0)
أسعار الصرف من العملات الأخرى إلى {{ $currency->code }}:
@foreach($exchangeRatesTo as $rate) @endforeach
العملة سعر الصرف سعر الشراء سعر البيع تاريخ السريان الحالة
{{ $rate->fromCurrency->code }} ({{ $rate->fromCurrency->name }}) {{ number_format($rate->rate, $currency->decimal_places) }} {{ number_format($rate->buy_rate, $currency->decimal_places) }} {{ number_format($rate->sell_rate, $currency->decimal_places) }} {{ $rate->effective_date->format('Y-m-d') }} @if($rate->status == 'active') نشط @else غير نشط @endif
@endif
@endsection