Top "Laravel-routing" questions

Routing in Laravel Framework's MVC implementation.

Laravel 5.1 add Query strings in url

I've declared this route: Route::get('category/{id}{query}{sortOrder}',['as'=>'sorting','uses'=>'CategoryController@searchByField'])->…

php laravel laravel-5.1 laravel-routing
Laravel form won't PATCH, only POST - nested RESTfull Controllers, MethodNotAllowedHttpException

I am trying to allow users to edit their playlist. However, whenever I try to execute the PATCH request, I …

laravel laravel-4 laravel-routing
Method not allowed when PUT used over AJAX for Laravel resource

I'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-routing
Auth::guest() returns true for both logged in and logged out users

I 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-middleware
Laravel 5.6 additional Route::resource() Parameters

I would like to know how to add additional parameters to Laravel's Route Resource without using Query Strings. I created …

laravel laravel-5 laravel-routing
Laravel 4 : Route to localhost/controller/action

I'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-routing
Single Laravel Route for multiple controllers

I am creating a project where i have multiple user types, eg. superadmin, admin, managers etc. Once the user is …

php laravel laravel-5 laravel-routing
Laravel grouping routes what is best prefix or middleware

When I start thinking grouping my routes and check the documentation. I lost there. There are too many things like …

laravel routing laravel-routing laravel-middleware
Restrict route access to non-admin users

Goal 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-middleware
Login and registration form in Laravel 5

I 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