Routing
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\Help\ArticleController;
Route::get('/help', [ArticleController::class, 'index'])->name('help.articles.index');
Route::get('/help/{slug}', [ArticleController::class, 'show'])->name('help.articles.show');Last updated