@extends('adminLayout::index')
@section('pageContent')
{{ __('admin/currencies.index_desc') }}
{{ __('table.labels.name') }}
{{ __('table.labels.code') }} Alpha 3
{{ __('table.labels.status') }}
{{ __('table.labels.created_at') }}
#ID
{{ __('labels.table.actions') }}
@if($currencies->isNotEmpty())
@foreach ($currencies as $currencyData)
@include('admin::currencies.index.parts.currency-item', [
'currencyData' => $currencyData
])
@endforeach
@else
@endif
@unless($currencies->isEmpty())
{{ $currencies->onEachSide(1)->withQueryString()->links('pagination.index') }}
@endunless
@endsection