Powered by Blogger.

Routes or Controller Actions in laravel


How to call controller function using the URL?
set this In app/routes.php
Route::get('login', array('uses' => 'AuthController@getLogin'));

No comments