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