php - Laravel 5 routes not found -
i created laravel project using composer create-project --prefer-dist laravel/laravel myproject. inside myproject routes.php has
route::get('/', function () { return view('welcome'); }); welcome.blade exists in resources/views.
inside wamp's www myproject installed. when type in browser http://localhost/myproject/welcome.php it's not found?
when hit home page that's /, laravel show welcome.blade.php page. not when go welcome.php
also, once install laravel, run php artisan serve command in terminal or command prompt. can access web application in localhost:8000/
Comments
Post a Comment