@extends('layouts.app') @section('title', 'إدارة العملات') @section('content')
قائمة العملات
@if(isset($currencies) && count($currencies) > 0) @foreach($currencies as $currency) @endforeach @else @endif
# الرمز الاسم الرمز المختصر العملة الأساسية الحالة الإجراءات
{{ $loop->iteration }} {{ $currency->code }} {{ $currency->name }} {{ $currency->symbol }} @if($currency->is_base_currency) نعم @else لا @endif @if($currency->is_active) نشط @else غير نشط @endif
لا توجد عملات مسجلة
@if(isset($currencies)) @foreach($currencies as $currency) @endforeach @endif @endsection