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

Documents

+ New Document
@foreach($documents as $d) @endforeach
NumberTypeCustomerCompanyDateTotal
{{ $d->number }} {{ \App\Models\Document::typeLabel($d->type) }} {{ $d->customer->name ?? '-' }} {{ $d->company->name ?? '-' }} {{ $d->issue_date?->format('Y-m-d') }} {{ $d->currency }} {{ number_format($d->total, 2) }} PDF
@csrf @method('DELETE')
{{ $documents->links() }}
@endsection