@extends('layouts.app') @section('title', 'Settings - Tiqkets') @section('page-title', 'Settings') @php use App\Models\ShortUrl; @endphp @section('content')
audio_enabled ? 'checked' : '' }}>
Background Audio

Restaurant announcements/music play through speakers

tv_display_enabled ? 'checked' : '' }}>
TV Display

Show queue status on TV screen.

@php $tvDisplayUrl = route('outlet-staff.outlet-display', [ 'bid' => $outlet->id, 'cid' => $outlet->cid, ]); $shortTvUrl = ShortUrl::generate($tvDisplayUrl); @endphp @if ($outlet->tv_display_enabled)
Display URL: {{ $shortTvUrl }}
@endif
@endsection @push('styles') @endpush @push('scripts') @endpush