@extends('central.dashboard.layouts.master') @section('sidebar') @include('central.dashboard.layouts.sidebar', ['page' => 'currencies']) @endsection @section('content')

العملات

@if (Auth::guard('admin')->user()->hasPermissionTo('currencies-add', 'admin')) إضافة جديد @endif
@forelse ($currencies as $currency) @empty @endforelse
# إسم العملة (عربي) رمز العملة (عربي) رمز العملة (انكليزي) الدول العلم سعر الصرف اجراءات
{{ $loop->iteration }} {{ $currency->name }} {{ $currency->ar_symbol }} {{ $currency->symbol }} @foreach ($currency->countries as $country) - {{ $country->ar_name }}
@endforeach
flag Image {{ $currency->exchange_price }} @if (Auth::guard('admin')->user()->hasPermissionTo('currencies', 'admin')) @endif
لا يوجد عملات حتى الآن ...
@endsection