@extends('layouts.app')
@section('content')
Multi-gate support
Entry gates
Create gates now, add more entrances later without changing ticket flow.
Gate list
| Name | Location | Status | |
@foreach($gates as $gate)| {{ $gate->name }} | {{ $gate->location ?: '-' }} | {{ $gate->is_active ? 'ACTIVE' : 'INACTIVE' }} | |
@endforeach
{{ $gates->links() }}
@endsection