Exchange Rate

{{ $action === 'add' ? 'Create' : ($action === 'edit' ? 'Edit' : '') }}

@if ($action === 'list') @if ($message)
{{ $message }}
@endif
@foreach ($results as $exc) @endforeach
# Currency Expired date Finish date Rate Baht Export Baht Action
{{ $exc->currency }} {{ $exc->exdate }} {{ $exc->finishdate }} {{ $exc->rate }} {{ $exc->baht }} {{ $exc->exbaht }}
{{ $results->links('livewire.paginate-custom') }}
@elseif($action === 'add') @elseif($action === 'edit') @livewire('pages.exchangerate.exchangerate-edit', ['currency' => $editCurrency, 'exdate' => $editExdate]) @endif
@vite(['resources/js/sweetalert.js'])