Files
new.rybstock.ru/public/index.php
T
2026-06-05 15:52:20 +03:00

25 lines
1.0 KiB
PHP

<?php
declare(strict_types=1);
use App\Controllers\CatalogController;
use App\Controllers\HomeController;
use App\Controllers\PageController;
use App\Core\Router;
require_once dirname(__DIR__) . '/app/bootstrap.php';
$router = new Router();
$router->get('/', static fn () => (new HomeController())->index());
$router->get('/catalog', static fn () => (new CatalogController())->index());
$router->get('/delivery', static fn () => (new PageController())->delivery());
$router->get('/payment', static fn () => (new PageController())->payment());
$router->get('/contacts', static fn () => (new PageController())->contacts());
$router->get('/returns', static fn () => (new PageController())->returns());
$router->get('/cart', static fn () => (new PageController())->cart());
$router->get('/product/{slug}', static fn (string $slug) => (new CatalogController())->product($slug));
$router->get('/catalog/{slug}', static fn (string $slug) => (new CatalogController())->category($slug));
$router->dispatch($_SERVER['REQUEST_METHOD'], $_SERVER['REQUEST_URI']);