/hotspot/ ├── app/ │ ├── Console/ │ ├── Exceptions/ │ ├── Http/ │ │ ├── Controllers/ │ │ │ ├── AuthController.php │ │ │ ├── PaymentController.php │ │ │ ├── SessionController.php │ │ ├── Middleware/ │ │ │ ├── CheckHotspotSession.php │ │ │ ├── RedirectIfAuthenticated.php │ ├── Models/ │ │ ├── Session.php │ │ ├── Payment.php │ │ ├── Device.php ├── bootstrap/ ├── config/ │ ├── captive.php │ ├── hotspot.php ├── database/ │ ├── migrations/ │ │ ├── 2023_01_01_000000_create_sessions_table.php │ │ ├── 2023_01_01_000001_create_payments_table.php │ │ ├── 2023_01_01_000002_create_devices_table.php │ ├── seeders/ │ ├── factories/ ├── public/ │ ├── assets/ │ ├── css/ │ ├── js/ │ ├── index.php │ ├── .htaccess ├── resources/ │ ├── views/ │ │ ├── auth/ │ │ │ ├── login.blade.php │ │ │ ├── register.blade.php │ │ ├── payments/ │ │ │ ├── checkout.blade.php │ │ │ ├── success.blade.php │ │ ├── sessions/ │ │ │ ├── active.blade.php │ │ ├── welcome.blade.php ├── routes/ │ ├── web.php │ ├── api.php ├── storage/ ├── tests/ ├── vendor/ ├── .env ├── artisan