Laravel -weird output at top of every page and command -
i tried answer laracast community ended not getting response. following text output @ top of every page or cli command:
skip content personal open source business explore pricing blog support repository
3,019 22,483
7,384
laravel/laravel code pull requests 0 pulse graphs laravel/config/database.php eb7743f 11 days ago @dakira dakira allow setting sqlite database via env @taylorotwell @tgm @vlakoff @dakira @marcanuy @pedes42 @jimmypuckett @grahamcampbell @david-ridgeonnet @syntaxc4 @overtrue 121 lines (101 sloc) 3.84 kb of files may suspect available in laracast discussion posted. c4 @overtrue 121 lines (101 sloc) 3.84 kb
btw used composer install laravel. edit routes.php file
<?php /* |-------------------------------------------------------------------------- | application routes |-------------------------------------------------------------------------- | | here can register of routes application. | it's breeze. tell laravel uris should respond | , give controller call when uri requested. | */ route::get('/', 'pagescontroller@index'); route::get('item', 'itemcontroller@index'); route::get('item/create', 'itemcontroller@create'); route::get('item/{id}', 'itemcontroller@show'); route::get('welcome', function() { return view('welcome'); }); route::group(['middleware' => 'web'], function () { route::auth(); route::get('/home', 'homecontroller@index'); }); route::post('item', 'itemscontroller@store');
Comments
Post a Comment