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