@extends('formbuilder::layout')
@section('title') Show my Submission @endsection
@section('content')
@foreach($form_headers as $header)
-
{{ $header['label'] ?? title_case($header['name']) }}:
{{ $submission->renderEntryContent($header['name'], $header['type']) }}
@endforeach
-
Form:
{{ $submission->form->name }}
-
Submitted By:
{{ $submission->user->name ?? 'Guest' }}
-
Last Updated On:
{{ $submission->updated_at->toDayDateTimeString() }}
-
Submitted On:
{{ $submission->created_at->toDayDateTimeString() }}
@endsection