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

Home Currency

Set and update the firm's home currency.

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

{{ $homeCurrency ? 'Update Home Currency' : 'Add Home Currency' }}

@if($homeCurrency)
@csrf @method('PUT')
@else
@csrf
@endif
Symbol
Name
Effective
Actions
@forelse ($homeCurrencies as $hc) @if($hc->home_currency_id)
{{ $hc->currency?->symbol ?? '' }}
{{ $hc->currency?->currency_name ?? '' }}
{{ $hc->currency?->currency_code ?? '' }}
{{ $hc->effective_date ?? '-' }}
@endif @empty
🏠
No home currency records
Set your home currency to get started.
@endforelse
No records match your search.
@endsection