updatea
This commit is contained in:
@ -17,5 +17,20 @@ Route::post('/postresgistration',[AuthenticationController::class,'store'])->nam
|
||||
|
||||
|
||||
Route::get('/', [WebsiteController::class, 'home'])->name("home");
|
||||
Route::get('/single',[WebsiteController::class, 'single'])->name("single");
|
||||
Route::get('/newsDetail',[WebsiteController::class, 'newsDetail'])->name("newsDetail");
|
||||
Route::get('/single/{alias}',[WebsiteController::class, 'single'])->name("single");
|
||||
Route::get('/newsDetail/{alias}',[WebsiteController::class, 'newsDetail'])->name("newsDetail");
|
||||
Route::get('/showHororscope',[WebsiteController::class, 'showHororscope'])->name("showHororscope");
|
||||
Route::get('/international/{alias}',[WebsiteController::class,'showInternational'])->name("showInternational");
|
||||
Route::get('/showVideos',[WebsiteController::class,'showVideos'])->name("showVideos");
|
||||
|
||||
Route::get('/aboutus/{alias}',[WebsiteController::class,'showAboutus'])->name("showAboutus");
|
||||
Route::get('/article/{alias}',[WebsiteController::class,'showArtilce'])->name("showArtilce");
|
||||
|
||||
Route::get('/provinces/{id}',[WebsiteController::class,'showProvinces'])->name("showProvinces");
|
||||
|
||||
Route::get('/contact',[WebsiteController::class,'showContact'])->name("contact");
|
||||
Route::post('/sendEmail',[WebsiteController::class,'sendEmail'])->name("sendEmail");
|
||||
|
||||
Route::get('/phpinfo', function() {
|
||||
phpinfo();
|
||||
});
|
Reference in New Issue
Block a user