“Laravel Mesma rota Grupo diferente” Respostas de código

Laravel Mesma rota Grupo diferente

$myroutes =  function () {
    Route::get('/news', 'NewsController@index')->name('news_index');
    Route::get('/article', 'ArticleController@index')->name('article_index');
};

Route::group(['prefix' => 'chemistry'], $myroutes);
Route::group(['prefix' => 'math'], $myroutes);
Route::group(['prefix' => 'geography'], $myroutes);
Real Raven

Laravel Mesma rota Grupo diferente

 {!!URL::to('chemistry/news')!!}
 {!!URL::to('geography/news')!!}
 {!!URL::to('math/news')!!}
Real Raven

Respostas semelhantes a “Laravel Mesma rota Grupo diferente”

Perguntas semelhantes a “Laravel Mesma rota Grupo diferente”

Mais respostas relacionadas para “Laravel Mesma rota Grupo diferente” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código