In my last article I showed you How to Create Custom Route File in Laravel 8. In that article I created an admin custom routes which is accessible at http://127.0.0.1:8000/admin. In this articles I will show you how you can…
Tag: middleware
How to Create Custom Route File in Laravel 8/9/10
Routes are the entry points to a Laravel application. There are two route files available in Laravel 8 by default. These are web.php and api.php. If required one can create custom route file in Laravel easily. In this article I…