{{ __('Agreements') }}

{{ __('Manage and track all agreements') }}

@can('create agreements') @endcan
@if ($search) Clear @endif
@if ($search)

{{ $agreements->total() }} results found for "{{ $search }}"

Clear all filters
@endif
@forelse($agreements as $agreement) @empty @endforelse
Agreement Number Party Name Title Dates People in Charge Actions
{{ $agreement->agreement_number }}
{{ $agreement->party_name }}
{{ $agreement->title }}
Start: {{ $agreement->date }}
End: {{ $agreement->end_date }}
@foreach ($agreement->peopleInCharge as $person) {{ $person->name }} @endforeach
@can('edit agreements') {{-- Assuming an 'edit agreements' permission --}} @endcan @can('delete agreements') {{-- Assuming a 'delete agreements' permission --}}
@csrf @method('DELETE')
@endcan

No agreements found.

@can('create agreements') Create your first agreement → @endcan
{{-- Pagination with per-page selector --}}
entries
{{ $agreements->links() }}
@push('scripts') @endpush