You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So in IndexController create home method and create welcome.blade.php file.
now in blade file i have defined route('welcome') so it's return this error.
The text was updated successfully, but these errors were encountered:
When i add two routes in MultiLang::routeGroup in web.php file one is home and second is welcome.
MultiLang::routeGroup(function($router) {
Route::get('home', [IndexController::class, 'home'])->name('home');
Route::get('welcome', [IndexController::class, 'welcome'])->name('welcome');
});
So in IndexController create home method and create welcome.blade.php file.
now in blade file i have defined route('welcome') so it's return this error.
The text was updated successfully, but these errors were encountered: