/**
  * Show the form for editing the specified booking.
  *
  * @param  int $id
  * @return Response
  */
 public function edit($id)
 {
     $booking = Booking::find($id);
     $artists = Artist::lists('name', 'permalink');
     return view('admin.booking.edit', compact('booking', 'artists'));
 }