Top "Laravel-routing" questions

Routing in Laravel Framework's MVC implementation.

Class 'App\Http\Controllers\Controller' not found - Laravel 5.2

I am new here but I already checked all solutions about my problem here and still didn't fix it. I …

php laravel-5 laravel-routing laravel-5.2
How to set the default controller in Laravel?

I'm using the Laravel PHP framework and am wondering about a few things. The default application/routes.php file contains …

php laravel laravel-routing
Can I group multiple domains in a routing group in Laravel?

Let's say I have the following: Route::group(array('domain' => array('admin.example.com')), function() { ... }); Route::group(array('domain' =&…

php laravel routing laravel-routing
Install Laravel 5 app in subdirectory with htaccess

The Setup I am trying to install a laravel 5 app in this directory on my server: public_html/myapp/ And …

.htaccess mod-rewrite laravel laravel-routing
Make session expiration redirect back to login?

When user logs in and is authenticated, I use Auth::user()->username; to show username of user on …

laravel laravel-4 laravel-5 laravel-5.1 laravel-routing
laravel route filter to check user roles

I am building a restful api in laravel 4 where there are users with different types of permission. I want to …

php laravel laravel-4 laravel-routing
How to put route in anchor tag in laravel 5.2

I've gone through many of the articles below, which explains generating link from named route, but unable to solve my …

laravel-5.2 laravel-routing
Laravel Middleware except with Route::group

I'm trying to create a group Route for the admin section and apply the middleware to all paths except for …

php laravel-5 laravel-routing laravel-middleware
Laravel: Get URL from routes BY NAME

I'm trying to do something a little different and I couldn't find any way to do it. Maybe my approach …

php laravel laravel-5 routes laravel-routing
Previous route name in Laravel 5.1-5.8

I try to find name of previous route in Laravel 5.1. With: {!! URL::previous() !!} I get the route url, but I …

laravel laravel-routing