@extends('admin.layouts.layout', $headerOption) @section('content')
| {!! $wfSortLink('name', 'Form Name', $sortBy, $sortDir) !!} | {!! $wfSortLink('group_name', 'Group', $sortBy, $sortDir) !!} | {!! $wfSortLink('form_sender_name','Form Sender', $sortBy, $sortDir) !!} | E-Sign Docs | Status | {!! $wfSortLink('created_by_name', 'Created By', $sortBy, $sortDir) !!} | {!! $wfSortLink('created_at', 'Created At', $sortBy, $sortDir) !!} | {!! $wfSortLink('updated_at', 'Updated At', $sortBy, $sortDir) !!} | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $form->name }} | {{ $form->group_name ?: '—' }} | {{ $form->form_sender_name ?: 'N/A' }} | @forelse($form->esignMaps as $map) @if($map->document) {{ $map->document->title }} @endif @empty None @endforelse | @if($form->status) Active @else Inactive @endif | {{ $form->created_by_name ?: 'N/A' }} | {{ $form->created_at ? $form->created_at->format('M d, Y') : '—' }} | {{ $form->updated_at ? $form->updated_at->format('M d, Y') : '—' }} | |
|
@if($search) No web forms match “{{ $search }}”. Clear search @elseif($groupId) No web forms in the selected group. @else No web forms found. Create your first form or create a group. @endif |
||||||||