bbec276da8
* #355 Calculate distance button in add/edit Flight page * Styling * Move add/edit flight logic out of controller and into service layer * Styling * Formatting * Run styleci against modules dir * Styleci config * Style fixes in /modules
9 lines
232 B
PHP
9 lines
232 B
PHP
<?php
|
|
|
|
// This is the admin path. Comment this out if you don't have
|
|
// an admin panel component.
|
|
Route::group([], function () {
|
|
Route::get('/', 'AdminController@index');
|
|
Route::get('/create', 'AdminController@create');
|
|
});
|