So I found the solution, what you need to route the link. so like this:
<a href="{{ route('contact', app()->getLocale()) }}">{{__('common.contact_us')}}</a>
and to work this you have to add the name to the Route in web.php like this:
Route::get('/contact', 'ContactController@index')->name('contact');
if you do not add the name, it will say Route not found.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.