This commit is contained in:
2023-11-24 20:49:19 +08:00
parent ca5219cb93
commit be14f5fdb1
65 changed files with 1991 additions and 2214 deletions

View File

@@ -43,10 +43,10 @@
Route::get('/', [App\Http\Controllers\Front\HomeController::class, 'index'])->name('home');
Route::get('/{country}', [App\Http\Controllers\Front\HomeController::class, 'country'])->name('home.country');
// Route::get('/{country}', [App\Http\Controllers\Front\OldHomeController::class, 'country'])->name('home.country');
Route::get('/{country}/posts', [App\Http\Controllers\Front\HomeController::class, 'all'])->name('home.country.posts');
// Route::get('/{country}/posts', [App\Http\Controllers\Front\OldHomeController::class, 'all'])->name('home.country.posts');
Route::get('/{country}/posts/{post_slug}', [App\Http\Controllers\Front\HomeController::class, 'post'])->name('home.country.post');
// Route::get('/{country}/posts/{post_slug}', [App\Http\Controllers\Front\OldHomeController::class, 'post'])->name('home.country.post');
Route::get('/{country}/{category}', [App\Http\Controllers\Front\HomeController::class, 'countryCategory'])->name('home.country.category');
// Route::get('/{country}/{category}', [App\Http\Controllers\Front\OldHomeController::class, 'countryCategory'])->name('home.country.category');