{!! Form::label('id', 'Id:') !!}

{{ $attendance->id }}

{!! Form::label('user_id', 'User Id:') !!}

{{ $attendance->user_id }}

{!! Form::label('present', 'Present:') !!}

{{ $attendance->present }}

{!! Form::label('day', 'Day:') !!}

{{ $attendance->day }}

{!! Form::label('time_in', 'Time In:') !!}

{{ $attendance->time_in }}

{!! Form::label('time_out', 'Time Out:') !!}

{{ $attendance->time_out }}

{!! Form::label('created_at', 'Created At:') !!}

{{ $attendance->created_at }}

{!! Form::label('updated_at', 'Updated At:') !!}

{{ $attendance->updated_at }}