/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $weighIns = WeighIn::all();
     return view('admin.pages.weigh-ins.index', compact('weighIns'));
 }