@extends('layouts.nav') @section('title') Currency @endsection @section('content')

System Currency

Add Currency
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf

@foreach ($currencys as $currency) @endforeach
Currency Symbol Currency Name Action
Currency Symbol Currency Name Action
{{ $currency->Symbol }} {{ $currency->Name }}
@endsection