Example #1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $items = Item::paginate(5);
     return View::make('ads.ads_show')->with('items', $items);
 }