@extends('layouts.master') @section('title', 'Multi Currency - Currency') @section('content')

Currency

Add and maintain currency master records.

{{ count($currencies ?? []) }}
Currencies
← Back Edit Menu
🔍
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif

Add Currency

@csrf
Code
Name
Symbol
Status
Actions
@forelse($currencies as $currency) @if($currency->currency_id)
{{ $currency->currency_code }}
{{ $currency->currency_name }}
{{ $currency->country ?: 'Country not set' }}
{{ $currency->symbol }}
{{ $currency->is_active ? 'Active' : 'Inactive' }}
@endif @empty
💱
No currencies found
Create your first currency to get started.
@endforelse
No currencies match your search.
@endsection