@extends('layouts.app') @section('title', 'Outlet QR Code - Tiqkets') @section('page-title', $outlet->outlet_name . ' - QR Code') @section('header-action') Back to Outlets @endsection @section('content')

{{ $outlet->outlet_name }}

Shop Number {{ $outlet->shop_number ?? 'N/A' }}
Contact Person {{ $outlet->outlet_contact_name }}
Phone {{ $outlet->outlet_contact_phone }}
Email {{ $outlet->outlet_contact_email }}
{{ ucfirst($outlet->status) }}

{{ $users->count() }} Staff Members

WhatsApp QR Code

{!! $whatsappQrSvg !!}
Scan this QR code to connect directly via WhatsApp
@if($users->count() > 0)
Staff Members ({{ $users->count() }})
@foreach($users as $user) @endforeach
Name Email Phone Role Status
{{ $user->name }} {{ $user->email }} {{ $user->phone ?? 'N/A' }} {{ $user->role ?? 'Staff' }} {{ ucfirst($user->status ?? 'active') }}
@endif
@endsection @push('styles') @endpush