/**
  * Show the form for creating a new resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function create()
 {
     // Assign an event
     $event = Event::assign();
     $localClubs = Helpers::getUserClubs();
     $weighInSites = Helpers::getWeighInSites();
     $fishingSectors = Helpers::getWeighInSectors();
     $fishingLocations = Helpers::getWeighInLocations();
     return view('admin.pages.weigh-ins.create', compact('event', 'localClubs', 'weighInSites', 'fishingSectors', 'fishingLocations'));
 }