@extends('layouts.app') @section('title', __('Business Settings')) @section('content')
{{ __('Configuration') }}
{{ __('Business Information') }} · {{ __('Invoice & Print Settings') }} · {{ __('WhatsApp Settings') }} · {{ __('Color Settings') }} · {{ __('Currencies') }} · {{ __('Localization') }}
@csrf @method('PUT')
{{ __('Business Information') }}
@if(!empty($appLogoUrl))@endif
{{ __('Invoice & Print Settings') }}
{{ __('WhatsApp Settings') }}
{{ __('If empty, system uses the business phone number.') }}
{{ __('Invoices, purchases, receipts and supplier payments can be shared through WhatsApp using this number.') }}
{{ __('Color Settings') }}
{{ __('Changing colors will update buttons, sidebar highlights, badges and alerts.') }}
{{ __('Currencies') }}
@csrf
@foreach($currencies as $currency)@endforeach
{{ __('Currency') }}{{ __('Symbol') }}{{ __('Exchange Rate') }}{{ __('Status') }}
{{ $currency->code }}{{ $currency->name }}{{ $currency->symbol }}{{ $currency->exchange_rate }}@if($currency->is_default){{ __('Default') }}@else{{ __('Active') }}@endif@unless($currency->is_default)
@csrf @method('PUT')
@endunless
{{ __('Categories') }}
@csrf
@forelse($categories as $category)
{{ $category->name }}
@csrf @method('DELETE')
@empty
{{ __('No categories configured.') }}
@endforelse
{{ __('Units') }}
@csrf
@forelse($units as $unit)
{{ $unit->name }} ({{ $unit->short_name }})
@csrf @method('DELETE')
@empty
{{ __('No units configured.') }}
@endforelse
{{ __('Localization') }}

{{ __('Translation Manager') }}: پښتو، دری او English متنونه له همدې ځایه سمېدای شي.

{{ __('Translation Manager') }}
{{ __('System Information') }}
Laravel
{{ app()->version() }}
PHP
{{ PHP_VERSION }}
{{ __('Default Invoice Size') }}
{{ strtoupper($settings['invoice_size'] ?? 'a4') }}
{{ __('WhatsApp') }}
{{ ($settings['whatsapp_enabled'] ?? '1') !== '0' ? __('Enabled') : __('Disabled') }}
@endsection