@extends('layouts.app') @section('content')

📜 Your Generated Documents

⬅️ New Document @if($documents->isEmpty())

You haven't generated any documents yet.

@else
@foreach($documents as $doc) @endforeach
Date Type Parties Preview Action
{{ $doc->created_at->format('Y-m-d H:i') }} {{ strtoupper($doc->type) }} {{ $doc->party_a }} & ↔️ {{ $doc->party_b }}
{{ Str::limit($doc->generated_text, 120) }}
@csrf
@endif
@endsection