Top "Laravel-routing" questions

Routing in Laravel Framework's MVC implementation.

Laravel: How to Get Current Route Name? (v5 ... v7)

In Laravel v4 I was able to get the current route name using... Route::currentRouteName() How can I do it …

php laravel laravel-5 laravel-routing laravel-6
Download files in laravel using Response::download

In Laravel application I'm trying to achieve a button inside view that can allow user to download file without navigating …

php laravel laravel-4 laravel-routing
Laravel 5 - redirect to HTTPS

Working on my first Laravel 5 project and not sure where or how to place logic to force HTTPS on my …

php laravel laravel-routing laravel-5
How Can I Remove “public/index.php” in the URL Generated Laravel?

I need to remove index.php or public/index.php from the generated URL in Laravel; commonly path is localhost/…

php .htaccess laravel laravel-4 laravel-routing
How to clear Laravel route caching on server

This is regarding route cache on localhost About Localhost I have 2 routes in my route.php file. Both are working …

laravel laravel-routing
Set session variable in laravel

I would like to set a variable in the session using laravel this way Session::set('variableName')=$value; but the …

php laravel session-variables laravel-routing application-variables
My Routes are Returning a 404, How can I Fix Them?

I've just started learning the Laravel framework and I'm having an issue with routing. The only route that's working is …

php laravel routing laravel-routing laravel-3
Laravel 5.2 Missing required parameters for [Route: user.profile] [URI: user/{nickname}/profile]

I keep getting this error ErrorException in UrlGenerationException.php line 17: When ever any page loads and I'm logged in. Here …

php laravel laravel-routing laravel-5.2
Laravel Controller Subfolder routing

I'm new to Laravel. To try and keep my app organized I would like to put my controllers into subfolders …

laravel laravel-4 laravel-routing
How to get a list of registered route paths in Laravel?

I was hoping to find a way to create an array with the registered routes paths within Laravel 4. Essentially, I …

arrays laravel laravel-4 laravel-routing