@extends('layouts.app') @section('title', 'Cash Flows') @section('page-title', 'Cash Flow Management') @section('content')
Cash Flow History
Create Cash Flow
@if($cashFlows->count() > 0)
@foreach($cashFlows as $cashFlow) @endforeach
ID Company Project Year Created By Created At Actions
#{{ $cashFlow->id }} {{ $cashFlow->company->name }} {{ $cashFlow->project->name }} {{ $cashFlow->year }} {{ $cashFlow->created_by ?? 'Admin' }} {{ $cashFlow->created_at->format('M d, Y h:i A') }}
@csrf @method('DELETE')
@else

No cash flows created yet

Create Your First Cash Flow
@endif
@endsection @push('scripts') @endpush