/**
  * Show the form for editing the specified resource.
  *
  * @param  int $id
  * @return Response
  */
 public function index()
 {
     $all = $this->marketplace->all();
     // all clients
     $data = ['all_marketplaces' => MarketplacesModel::paginate(6), 'title' => 'All clients information'];
     return View::make('backend.all_marketplaces')->with($data);
 }