Currency Settings

Default Currency

Configure your default currency for tours and hotels

@if(session('success'))
{{ session('success') }}
@endif
@csrf @method('PUT')
@error('default_currency')
{{ $message }}
@enderror This currency will be used throughout the site for displaying prices in tours and hotels

Current Currency Settings

{{ $settings['default_currency_name']->value ?? 'Pakistani Rupee' }}

Code: {{ $settings['default_currency']->value ?? 'PKR' }} | Symbol: {{ $settings['default_currency_symbol']->value ?? 'Rs' }}

Price Display Preview:
{{ $settings['default_currency_symbol']->value ?? 'Rs' }} 15,000
{{ $settings['default_currency_symbol']->value ?? 'Rs' }} 25,500
{{ $settings['default_currency_symbol']->value ?? 'Rs' }} 50,000
How It Works
  • Tours will display prices in selected currency
  • Hotels will display prices in selected currency
  • All price displays will use the currency symbol
  • Changes apply immediately across the site