@extends('layouts.admin') @section('content')
All Currencies
@if(!empty($currencies[0]))
@foreach($currencies as $key=>$currency) @endforeach
# Name Country Action
{{$currency->id}} {{$currency->name}} {{$currency->country->name}}
{!! method_field('DELETE') !!} {!! csrf_field() !!}

{{ $currencies->links() }}
@else

No Records Found

@endif
@endsection @section('footer-content') @endsection