@extends('layouts.app') @section('title', 'Admin — Forms') @section('content')
{{ $forms->total() }} forms across all projects
| Form | Creator | Project | Submissions | Status | Public | Created | |
|---|---|---|---|---|---|---|---|
| {{ $form->title }} @if($form->template_category) {{ $form->template_category }} @endif | {{ $form->creator?->name ?? '—' }} | {{ $form->project?->name ?? '—' }} | {{ $form->submissions_count }} | {{ $form->is_active ? 'Active' : 'Inactive' }} | @if($form->is_public) ✓ @else — @endif | {{ $form->created_at->format('M d, Y') }} |
Submissions
@can('delete_form')
@endcan
|