/** * Display a listing of shares * * @return Response */ public function index() { $shares = Share::all(); return View::make('shares.index', compact('shares')); }