infojune/routes/web.php

25 lines
737 B
PHP
Raw Normal View History

2020-10-10 12:12:44 +02:00
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\ContentController;
/*
|--------------------------------------------------------------------------
| 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!
|
*/
Route::get('/', function () {
return view('welcome');
});
//Route::get('/content', [ContentController::class, 'index']);
Route::get('/content/{path}', [ContentController::class, 'show']);
Route::get('/category/{path}', [ContentController::class, 'index']);