@extends('layouts.app') @section('title', 'QR Codes - Tiqkets') @section('page-title', 'QR Codes Management') @section('content')
Generate QR Codes for Your Branches

Select a branch to view, download, or print QR codes for customer access

@if(count($branches) > 0)
@foreach($branches as $branch)
{{ $branch->branch_name }}

{{ $branch->location ?? 'N/A' }}

{{ ucfirst($branch->status) }}
Branch Code: {{ $branch->branch_code }}
Restaurant
@if($branch->isTakeawayEnabled())
Takeaway
@endif
View QR Codes
@endforeach
@else
No Branches Found

Create your first branch to generate QR codes.

Add Branch
@endif
@endsection @push('styles') @endpush