Top "Laravel-routing" questions

Routing in Laravel Framework's MVC implementation.

Laravel route pass variable to controller

How do I pass a hard coded variable to a controller? My route is: Route::group(array('prefix' => $locale), …

php laravel laravel-4 laravel-routing
Call to undefined method Illuminate\Routing\Route::get()

I have just installed Laravel 5.1, visited the home page of my app and i get the following error: Whoops, looks …

php laravel laravel-5 phpstorm laravel-routing
Get fullUrl in laravel 5.1

i have multiple bootstrap tabs where each one do different action from others tabs for exmaple app-url/users#creat-admin-users-tab app-url/…

php laravel laravel-5 laravel-routing
How to structure a modular app in Laravel 5?

I would like to divide my application in modules. For instance, there would be a "core" modules that contains the …

php laravel laravel-routing laravel-5
Redirect to homepage if route doesnt exist in Laravel 5

/** Redirect 404's to home *****************************************/ App::missing(function($exception) { // return Response::view('errors.missing', array(), 404); return Redirect::to('/'); }); I …

laravel-5 laravel-routing
Laravel 5.1 Delete a row from database

I am trying to delete a category by clicking on a button Blade: <td class="center"><a …

php laravel-5 laravel-routing
Laravel Update Syntax - Updating Record with Array

I'm having trouble doing a basic record update via POST in Laravel. I have captured all the post data in …

post laravel laravel-routing
How to route to a static folder in Laravel

I have a folder I've placed in the /public folder in my Laravel site. The path is: /public/test the "…

php laravel laravel-routing
Class App\Http\Controllers\StudentController does not exist in Laravel 5

I am building a module called Student in Laravel. I use the routes.php file inside the Student folder to …

php laravel laravel-5 laravel-routing laravel-controller
laravel 5 custom 404

This is driving me crazy. I'm working with Laravel 5 and it appears that the docs for 4.2 and generating 404 pages does …

php laravel laravel-routing laravel-5