@extends('layouts.master')
@section('title', 'Multi Currency - Home Currency')
@section('content')
Home Currency
Set and update the firm's home currency.
{{ count($homeCurrencies ?? []) }}
Records
@if (session('home_success'))
{{ session('home_success') }}
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@if($homeCurrency)
@else
@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.