You need to study laravel eloquent orm. With that your shops are loaded as objects and can be passed to the view easily.
return View::make('business', ['shops' => Shop::where('shop', '=', '?')->get();]);
or you can just call the model from within the view template file.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community