2024-01-18 02:50:09 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Web Routes
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
| Here is where you can register web routes for your application. These
|
|
|
|
|
| routes are loaded by the RouteServiceProvider and all of them will
|
|
|
|
|
| be assigned to the "web" middleware group. Make something great!
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
Route::get('/', function () {
|
|
|
|
|
return view('welcome');
|
|
|
|
|
});
|
2024-01-18 07:05:52 +01:00
|
|
|
|
2024-01-23 10:55:28 +01:00
|
|
|
Route::get('/caesar', function () {
|
|
|
|
|
return view('caesar/caesar');
|
|
|
|
|
});
|
|
|
|
|
|
2024-01-23 07:25:11 +01:00
|
|
|
Route::get('/resume', function () {
|
2024-01-23 10:55:28 +01:00
|
|
|
return view('resume/resume');
|
2024-01-23 07:25:11 +01:00
|
|
|
});
|
|
|
|
|
|
2024-01-18 07:05:52 +01:00
|
|
|
Route::get('/download/{file}', 'App\Http\Controllers\DownloadController@download');
|
2024-03-21 17:53:29 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
Route::group(['prefix' => 'admin'], function () {
|
|
|
|
|
Voyager::routes();
|
|
|
|
|
});
|