@extends('layouts.app') @section('main')

Company Settings

@if (session('success'))
{{ session('success') }}
@endif

Company Information

Company Name

{{ $settings->company_name ?? 'Not Set' }}

Phone Number

{{ $settings->number ?? 'Not Set' }}

Email

{{ $settings->company_email ?? 'Not Set' }}

Website

@if($settings->website) {{ $settings->website }} @else Not Set @endif

Address

{{ $settings->address ?? 'Not Set' }}

Registration Number

{{ $settings->company_registration_number ?? 'Not Set' }}

Time Zone

{{ $settings->time_zone ?? 'Not Set' }}

Currency

{{ $settings->currency ?? 'Not Set' }}

Company Logo

@if ($settings->logo_path) Company Logo @else

No logo uploaded

@endif

Quick Actions

Edit Settings

POS Configuration

Price Type {{ ucfirst($settings->pos_price_type ?? 'Not Set') }}
Price Value @if($settings->pos_price_type == 'percentage') {{ $settings->pos_price_value ?? 0 }}% @else {{ $settings->currency ?? '$' }}{{ $settings->pos_price_value ?? 0 }} @endif
POS Pricing Information
@if($settings->pos_price_type == 'percentage') POS prices will be calculated by adding {{ $settings->pos_price_value ?? 0 }}% to the base price. @else POS prices will be calculated by adding a fixed amount of {{ $settings->currency ?? '$' }}{{ $settings->pos_price_value ?? 0 }} to the base price. @endif

System Information

Last Updated:

{{ $settings->updated_at ? $settings->updated_at->format('M d, Y h:i A') : 'Never' }}

Created:

{{ $settings->created_at ? $settings->created_at->format('M d, Y h:i A') : 'Unknown' }}

Tenant ID:

{{ $settings->tenant_id ?? 'N/A' }}

@endsection