@extends('layouts.master') @section('content')
Back to Dashboard
Add Currency
@csrf
@if(Session::has('success'))
{{ Session('success') }}
@endif @if(Session::has('error'))
{{ Session('error') }}
@endif
Currencies
@foreach($records as $record) @endforeach
Symbol Description Action
{{ $record->symbol }} {{ $record->name }}
@endsection