mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
18 lines
583 B
PHP
18 lines
583 B
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Web Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here is where you can register web routes for your application. These
|
|
| routes are loaded by the RouteServiceProvider within a group which
|
|
| contains the "web" middleware group. Now create something great!
|
|
|
|
|
*/
|
|
|
|
// Get user avatar
|
|
Route::get('/avatars/{avatar}', 'FileAccessController@get_avatar')->name('avatar');
|
|
|
|
// Index Page
|
|
Route::get('/{any?}', 'AppFunctionsController@index')->where('any', '.*'); |