@extends('formbuilder::layout') @section('title') Submissions @endsection @section('css') @endsection @section('content')
{{ $pageTitle }} ({{ $submissions->count() }}) Back To Forms
@if($submissions->count())
@foreach($form_headers as $header) @endforeach @foreach($submissions as $submission) @foreach($form_headers as $header) @endforeach @endforeach
# User Name{{ $header['label'] ?? title_case($header['name']) }}Actions
{{ $loop->iteration }} {{ $submission->user->name ?? 'n/a' }} {{ $submission->renderEntryContent( $header['name'], $header['type'], true ) }} View
@csrf @method('DELETE')
@if($submissions->hasPages()) @endif @else

No submission to display.

@endif
@endsection