{{ __('invoices.title_currencyusd') }}

@if(session()->get('success'))
{{ session()->get('success') }}
@endif @if(session()->get('error'))
{{ session()->get('error') }}
@endif

{{ __('invoices.title_currencyusd') }}

{{-- Filtro por periodo --}}

{{-- Botón crear --}}
@can('create-exchangerate') @endcan
{{-- Tabla --}} @foreach($currencyusd as $row) @endforeach
{{ __('invoices.date') }} {{ __('invoices.mxn_to_usd') }} {{ __('invoices.actions') }}
{{ date('d-m-Y', strtotime($row->fecha)) }} {{ number_format($row->dato, 4) }}
{{-- Modal delete --}} @include('billing::currencyusd.partials.index.modal_delete_exchange_rate') @endsection @section('footerScript') @endsection