예제 #1
0
 /**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function show($id)
 {
     $recent = Visitor::findorfail($id);
     $sec = $recent->punch_out->diffInSeconds($recent->punch_in);
     $min = $recent->punch_out->diffInMinutes($recent->punch_in);
     $hour = $recent->punch_out->diffInHours($recent->punch_in);
     $day = $recent->punch_out->diffInDays($recent->punch_in);
     $ago2 = $recent->punch_out->diffForHumans();
     return view('visitors.show', compact('recent', 'ago2', 'min', 'hour', 'day', 'sec'));
 }