Route-php a method of a controller in Laravel, how can I access the

Source: Internet
Author: User
Tags autoload
I've created a new file/app/controllers/admin/logincontroller.php:

class LoginController extends BaseController{    public function showLogin()    {        echo 'test';    }}

Added code to the routing file/app/routes.php:

Route::get('/admin/login','admin.LoginController@loginForm');

Has opened the htaccess, but when I visited/admin/login error, prompted


ReflectionExceptionClass admin.LoginController does not exist

What I want to know now is how I can access the method I created, the access address is how much

Reply content:

I've created a new file/app/controllers/admin/logincontroller.php:

class LoginController extends BaseController{    public function showLogin()    {        echo 'test';    }}

Added code to the routing file/app/routes.php:

Route::get('/admin/login','admin.LoginController@loginForm');

Has opened the htaccess, but when I visited/admin/login error, prompted


ReflectionExceptionClass admin.LoginController does not exist

What I want to know now is how I can access the method I created, the access address is how much

php artisan dump-autoloadFocus

Route::get('/admin/login','LoginController@loginForm');

Can

Since Laravel is using the composer load class, if the class that is not created with the command needs to be updated autoload, as @kankana said: composer dump-autoload , recommend to see here http://segmentfault.com/a/1190000000355928

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.