@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')

Currency List

Selected
@if(session()->has('success'))
{{ session()->get('success') }}
@elseif(session()->has('error'))
{{ session()->get('error') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @foreach ($currencies as $currency) @endforeach
Currency Name Currency Icon Status Created by Created at Actions
{{$currency->currency}} icon
{{$currency->status == 1 ? 'Active' : 'Deactive'}}
You {{$currency->created_at->format('d M Y, g:i a')}} Actions
@include('partials.footer')
@include('global.footer-links')