/**
  * Display a list of all of the user's booths.
  *
  * @param  Request  $request
  * @return Response
  */
 public function index(Request $request)
 {
     return view('booths.index', ['booths' => $this->booths->forUser($request->user())]);
 }