У меня это на View : .. … <div class="section group"> @foreach ($product as $item) <div class="grid_1_of_4 images_1_of_4"> <h4><a href="#">{!! $item->name !!}</a></h4> <div class="price-details"> <div class="price-number"> <p><span class="price">$ {!! $item->price !!} </span></p> </div> <div class="add-cart"> <h4><a href="#">More Info</a></h4> </div> <div class="clear"></div> </div> </div> @endforeach </div> … .. И это на контроллере : .. … public […]
Я получаю эту ошибку, когда пытаюсь запустить php artisan (anything) : PHP Catchable fatal error: Argument 2 passed to Illuminate\Routing\UrlGenerator::__construct() must be an instance of Illuminate\Http\Request, null given, called in /www/laravel5/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php on line 56 and defined in /www/laravel5/vendor/laravel/framework/src/Illuminate/Routing/UrlGenerator.php on line 81 Catchable fatal error: Argument 2 passed to Illuminate\Routing\UrlGenerator::__construct() must be an instance of Illuminate\Http\Request, […]