@section('header', __('Currency exchange rate')) @livewire('dropdown-filter', [ 'filterTemplate' => 'livewire.directories.finance.filter', 'modelClass' => App\Filters\Directories\Finance\ExchangeRateFilter::class, 'htmlContent' => [ 'component' => 'exchange-rate', 'route' => 'test', 'name' => 'test', ], ])
@foreach ($exchangeRates as $rate) @endforeach
{{ __('Currency Code') }} {{ __('Rate') }} {{ __('Number of currency units') }} {{ __('Date') }}
{{ $loop->iteration }} {{ $rate->currency_name }} {{ $rate->rate }} {{ $rate->quantity }} {{ $rate->date }}
@if ($exchangeRates->count()) @if ($exchangeRates instanceof \Illuminate\Pagination\AbstractPaginator)
{{ $exchangeRates->links() }}
@endif @endif