@extends('layouts.app') @section('title', 'My Signed Documents') @section('content')

My Signed Documents View all documents you have signed

@if(session('success'))

Success!

{{ session('success') }}
@endif @if(session('warning'))

Warning!

{{ session('warning') }}
@endif

Signed Documents List

@if($signedDocuments->count() > 0)
@foreach($signedDocuments as $index => $doc) @endforeach
# Document Title Type Signed Date Actions
{{ $index + 1 }} {{ $doc['title'] }} {{ $doc['type'] }} @if($doc['signed_at']) {{ \Carbon\Carbon::parse($doc['signed_at'])->format('M d, Y g:i A') }} @else N/A @endif @if($doc['aws_url']) View PDF Download @else PDF not available @endif
@else

No Signed Documents Found

You haven't signed any documents yet.

@endif
@endsection