Skip to main content

Search Results for "routing"

We found 15 results for "routing".

Tutorial 6 min read Free

Multi-Language Routes and Locales with Auth

Multilanguage projects are quite easy to configure in Laravel, but if you want to have locale as part of URL, like /en/about, then you will have trouble with Auth::routes(), they won't work by default like /en/register. This article will show you what to do.

Tutorial 2 min read Free

How to check current URL or Route

Quite often you have a need to check current URL or route and show/hide some element and do some action. Here I will show several ways to do it.