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

Closeouts for: {{ $procurement->title }}

New Closeout
@if($closeouts->isEmpty())

No closeouts found for this procurement.

@else @foreach($closeouts as $closeout) @endforeach
# Summary Closed By Closeout Date Final Value Actions
{{ $loop->iteration }} {{ Str::limit($closeout->summary, 50) }} {{ $closeout->closedBy->name }} {{ $closeout->closeout_date->format('d-M-Y') }} {{ $closeout->final_procurement_value ? number_format($closeout->final_procurement_value, 2) . ' ' . $procurement->currency : 'N/A' }} View
{{ $closeouts->links() }}
@endif
@endsection