2つのルートと2つのルートのみを使用したいGet(mp3、video、albumまたはアーティスト)ここでLaravel:54同じルートに1つのルートを使用
は私の試みである:(グループの "/")
Route::get("mp3s", "[email protected]");
Route::get("mp3s/mp3/{slug}", "[email protected]");
Route::get("videos", "[email protected]");
Route::get("videos/video/{slug}", "[email protected]");
Route::get("albums", "[email protected]");
Route::get("albums/album/{slug}", "[email protected]");
Route::get("artists", "[email protected]");
Route::get("artists/artist/{slug}", "[email protected]");
私はforeachのをwrited、しかししている:
私はそれがeachpageで悪い習慣だと思います。
私はここに(mp3やアルバム、..)を取得カント:
foreach (pts as $pt) {
Route::get($pt.'s', '[email protected]');
Route::get(("{$pt}s/$pt/{slug}"), "[email protected]");
}
はい、このコントローラで「ビデオ」を取得するにはどうすればよいですか? –
チェックアウト私の答えの更新 – hassan
は大丈夫です!しかし、このURLの 'localhost:8000/admin/post/new' 404では、(同じコントローラを使用しているので( –