/**
  * Show the form for creating a ticket.
  *
  * @return \Illuminate\Http\Response
  */
 public function create()
 {
     return view('tickets.create')->with('classes', Event::getClassifications())->with('types', Event::getTypes())->with('auth_user', $this->auth_user);
 }