Files
ai_playgroud/public/index.php
Claude 143fe3d488 Set up modern PHP MVC project structure for GetYourBand platform
- Implemented clean MVC architecture with Router, Controller, and Model base classes
- Created database migrations for users, bands, bookings, reviews, and availability
- Set up Tailwind CSS with yellow color scheme and modern design
- Added Alpine.js for reactive JavaScript components
- Configured Vite for asset building and hot module replacement
- Created authentication and role-based middleware
- Implemented helper functions and configuration system
- Added comprehensive README with setup instructions
- Configured Apache with proper rewrite rules and security headers
- Set up Composer and npm package management with modern dependencies
2025-12-02 21:31:08 +00:00

29 lines
623 B
PHP

<?php
require_once __DIR__ . '/../bootstrap.php';
use App\Core\Router;
// Initialize router
$router = new Router();
// Load routes
require_once __DIR__ . '/../routes/web.php';
// Dispatch request
$requestMethod = $_SERVER['REQUEST_METHOD'];
$requestUri = $_SERVER['REQUEST_URI'];
try {
$router->dispatch($requestMethod, $requestUri);
} catch (Exception $e) {
if (config('app.debug')) {
echo "<h1>Error</h1>";
echo "<p>{$e->getMessage()}</p>";
echo "<pre>{$e->getTraceAsString()}</pre>";
} else {
http_response_code(500);
echo "500 - Internal Server Error";
}
}