14 lines
605 B
PHP

<?php
use Lycoreco\Apps\Recipes\Controllers;
use Lycoreco\Includes\Routing\Path;
$recipes_urls = [
new Path('/recipe/[:int]', new Controllers\SingleRecipeController(), 'single'),
new Path('/recipe/[:int]/export-pdf', new Controllers\ExportPdfController(), 'export-pdf'),
new Path('/catalog', new Controllers\CatalogController(), 'catalog'),
new Path('/daily-meals', new Controllers\DailyMealsController, 'daily-meals'),
new Path('/favorites', new Controllers\FavoritesController(), 'favorites'),
new Path('/submit', new Controllers\SingleSubmitController(), 'single-submit'),
];