@extends('install.layout', ['currentStep' => 5]) @section('title', 'Installation Complete') @section('content')
{{-- ── Success icon ── --}}

Installation Complete!

TicketDjama has been successfully installed. The setup wizard has been permanently disabled. Your API is now live.

{{-- ── Info cards ── --}}
{{-- API base URL --}}

API Base URL

{{ url('/api') }}
{{-- First login endpoint --}}

Staff Login Endpoint

POST {{ url('/api/auth/login') }}
{{-- Tenant header --}}

Required Header

X-Tenant-Slug: <your-slug>
{{-- ── Next steps ── --}}

Next Steps

    @foreach ([ 'Use the Flutter app or a REST client to call POST /api/auth/login with your admin credentials.', 'Add routers, hotspots, and packages via the management API.', 'For production: set APP_DEBUG=false in .env and configure a queue worker.', 'Optionally update SESSION_DRIVER=database in .env once the database is confirmed stable.', ] as $i => $step)
  1. {{ $i + 1 }}

    {{ $step }}

  2. @endforeach
{{-- ── API spec link ── --}}

Refer to API_SPEC.md in your project root for the full endpoint documentation.

@endsection