Record cost
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif
@forelse($costs as $cost)@empty@endforelse
CostCategoryVendorAmountStatusActions

{{ $cost->description }}

{{ $cost->cost_number }} ยท {{ $cost->incurred_on->format('d M Y') }}

{{ $cost->category->name }}{{ $cost->vendor ?: 'Internal' }}KES {{ number_format((float)$cost->amount, 2) }}
@if($cost->status === 'draft')Edit
@csrf
@endif @if($cost->status === 'approved')
Pay
@csrf
@endif
No costs match the selected filters.
@if($costs->hasPages())
{{ $costs->links() }}
@endif