Beispiel #1
0
 /**
  * Show the form for editing the specified share.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $share = Share::find($id);
     return View::make('shares.edit', compact('share'));
 }