/**
  * Show the profile for the given user.
  *
  * @param  int $id
  * @return Response
  */
 public function index()
 {
     $hairstyles = Hairstyles::all();
     //        dd($hairstyles);
     //        exit;
     return view('hairstyles/hairstyles', compact('hairstyles'));
 }