8 lines
203 B
PHP
8 lines
203 B
PHP
<?php
|
|
|
|
Route::prefix('Articles')->name('Articles.')->group(function () {
|
|
Route::get('', 'ArticleController@index')->name('index');
|
|
Route::get('show/{id}', 'ArticleController@show')->name('show');
|
|
});
|
|
|