/**
  * Show the form for editing the specified resource.
  * GET /billings/{id}/edit
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $billing = Billing::find($id);
     return View::make('billings.edit', compact('billing'));
 }