@extends('layouts.app') @section('content')

{{ __('Currencies') }}

@if (count($currencies) > 0) @foreach ($currencies as $currency) @endforeach
{{ __('Name') }} {{ __('Code') }} {{ __('Actions') }}
{{ app()->getLocale() == 'ar' ? $currency-> label_ar : $currency-> label_en }} {{ app()->getLocale() == 'ar' ? $currency-> code_ar : $currency-> code_en }} {{ __('Edit') }}
@csrf @method('DELETE')
{{ $currencies->appends(Request::all())->links() }}
@else

{{ __('No Currencies found.') }}

@endif
@endsection