25 lines
773 B
PHP
25 lines
773 B
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Web Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This file is where you may define all of the routes that are handled
|
|
| by your application. Just tell Laravel the URIs it should respond
|
|
| to using a Closure or controller method. Build something great!
|
|
|
|
|
*/
|
|
|
|
Auth::routes();
|
|
|
|
// Gallery
|
|
Route::get('/', 'Gallery\DefaultController@index')->name('home');
|
|
|
|
// Administration
|
|
Route::group(['prefix' => 'admin'], function () {
|
|
Route::get('/', 'Admin\DefaultController@index')->name('admin');
|
|
|
|
Route::get('albums/{id}/delete', 'Admin\AlbumController@delete')->name('albums.delete');
|
|
Route::resource('albums', 'Admin\AlbumController');
|
|
}); |