Routing in Laravel Framework's MVC implementation.
I've declared this route: Route::get('category/{id}{query}{sortOrder}',['as'=>'sorting','uses'=>'CategoryController@searchByField'])->…
php laravel laravel-5.1 laravel-routingI am trying to allow users to edit their playlist. However, whenever I try to execute the PATCH request, I …
laravel laravel-4 laravel-routingI've got this resource in routes.php: Route::resource('items', 'ItemsController', ['before' => 'admin_access']); Trying to reach ItemsContoller@update …
jquery ajax laravel laravel-4 laravel-routingI am new to laravel and so I was trying to create a small project for learning purpose. I have …
php laravel laravel-routing laravel-5.2 laravel-middlewareI would like to know how to add additional parameters to Laravel's Route Resource without using Query Strings. I created …
laravel laravel-5 laravel-routingI'm more or less new to Laravel 4. I've never used routes before but normally what I'm used to is url/…
laravel laravel-4 url-routing laravel-routingI am creating a project where i have multiple user types, eg. superadmin, admin, managers etc. Once the user is …
php laravel laravel-5 laravel-routingWhen I start thinking grouping my routes and check the documentation. I lost there. There are too many things like …
laravel routing laravel-routing laravel-middlewareGoal I'm trying to create Admin route restriction for my log-in users. I've tried a check to see if my …
php laravel laravel-5 laravel-routing laravel-middlewareI start to learn a new laravel and trying to learn it, by building small project, to make my starter …
laravel laravel-routing laravel-5 laravel-form laravel-request