@extends('layouts.app') @section('title', 'Settings - Tiqkets') @section('page-title', 'Settings') @section('content')
@if (session('success')) @endif @if (session('error')) @endif
@csrf
Take-away

When enabled, customers can place take-away orders via kiosk, QR, or staff entry.

@php use App\Models\ShortUrl; $takeawayUrl = route('location-manager.takeaway-display', [ 'bid' => $branch->id, 'cid' => $branch->cid, ]); @endphp @if ($branch->takeaway_enabled) @endif
Reservation

Accept or block reservations.

@php $reservationUrl = route('location-manager.reservation-form', [ 'bid' => $branch->id, 'cid' => $branch->cid, ]); @endphp @if ($branch->reservation_enabled) @endif
Wait Time Rules

Turn ON/OFF live wait-time tracking.

Background Audio

Restaurant announcements/music play through speakers

TV Display

Show queue status on TV screen.

@php $tvUrl = route('location-manager.tv-display', [ 'bid' => $branch->id, 'cid' => $branch->cid, ]); @endphp @if ($branch->video_enable) @endif
Advanced Seating

Enable advanced table layout management with custom table configurations and capacity settings.

Gender Selection

Enable customers to select gender for table allocation.

Split/Share Seating

Enable splitting or sharing tables based on seat threshold.

Notification Setup

Manage up to 5 notification contacts for queue monitoring, reports, and alerts. Configure when and how your team gets notified about restaurant operations.

@if ($notificationContacts->count() > 0)
@foreach ($notificationContacts as $index => $contact) @endforeach
S. No. Contact Name Number Alert Types
{{ $index + 1 }} {{ $contact->name }} {{ $contact->phone_number }}
@if ($contact->queue_start) Queue Start @endif @if ($contact->queue_report) Queue Report @endif @if ($contact->high_booking_alert) Alert when bookings > {{ $contact->booking_threshold }} @endif @if ($contact->high_waiting_alert) Alert when waiting > {{ $contact->waiting_threshold }} @endif
@else

No notification contacts configured yet.

@endif
@endsection @push('styles') @endpush @push('scripts') @endpush