@extends('layout.master') @section('content')
{{ $visitor->name }}

{{ \Carbon\Carbon::parse($visitor->created_at)->format('M j, Y') }}

@foreach ($visitor->answers as $key => $answer) @endforeach
# Question Answer
{{ $key + 1 }} {{ $answer->question }} {{ $answer->answer }}
@endsection