Routing in Laravel Framework's MVC implementation.
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.2I'm using the Laravel PHP framework and am wondering about a few things. The default application/routes.php file contains …
php laravel laravel-routingLet's say I have the following: Route::group(array('domain' => array('admin.example.com')), function() { ... }); Route::group(array('domain' =&…
php laravel routing laravel-routingThe 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-routingWhen 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-routingI 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-routingI've gone through many of the articles below, which explains generating link from named route, but unable to solve my …
laravel-5.2 laravel-routingI'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-middlewareI'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-routingI try to find name of previous route in Laravel 5.1. With: {!! URL::previous() !!} I get the route url, but I …
laravel laravel-routing