@extends('layouts.customer') @section('content')

POS Settings

@if ($errors->any())
Oops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if ($message = Session::get('success'))

{{ $message }}

@endif
General Settings
@csrf
Receipt Settings
@if($devices)
@if( $receipt_setting )
@csrf @php $rSetting = json_decode($receipt_setting->setting_value,true); @endphp
@else
@csrf
@endif @else {{ 'No devices added yet.' }} @endif
Ticket Settings
@if($devices)
@if( $ticket_setting )
@csrf @php $tSetting = json_decode($ticket_setting->setting_value,true); @endphp
@else {{ 'Printer setting not added yet.' }} @endif @else {{ 'No devices added yet.' }} @endif
Tipping Settings
@if($devices)
@if( $tipping_setting )
@csrf @php $tSetting = json_decode($tipping_setting->setting_value,true); @endphp
Tipping type
@else
@csrf
Tipping type
@endif @else {{ 'No devices added yet.' }} @endif
Actively Report Settings
@if($posdevices)
@foreach( $posdevices as $device )
report_setting) && $device->report_setting ) checked @endif>

{{ $device->name ?? '' }}

@endforeach
@endif
Order Settings
@csrf
data["is_auto_confirm"]) && filter_var($pos_setting->data["is_auto_confirm"], FILTER_VALIDATE_BOOLEAN) ) checked @endif>
@endsection @section('script') @endsection