Files
opensem/routes/Admin/Botanic/route.php
2021-07-25 23:19:27 +02:00

9 lines
247 B
PHP

<?php
Route::prefix('Botanic')->namespace('Botanic')->name('Botanic.')->group(function () {
include( __DIR__ . '/Families.php');
include( __DIR__ . '/Genres.php');
include( __DIR__ . '/Species.php');
include( __DIR__ . '/Varieties.php');
});