@extends('layout.main') @section('content')

Funds

Add fund {{-- --}}

Funds List

{{-- --}} @if (Auth::user()->can('fund-edit') || Auth::user()->can('fund-delete')) @endif @unless (count($funds) == 0) @foreach ($funds as $fund) {{-- --}} @endforeach @else @endunless
Fund Name Fund AmountFund DescriptionActions

{{ $fund->name }}

{{--

10x Developer

--}}
TSHS {{ number_format($fund->amount, 2) }}

{{ $fund->description }}

Approved
@if (Auth::user()->can('fund-edit')) @endif @if (Auth::user()->can('fund-delete'))
@csrf @method('DELETE')
@endif
No Funds Found
Showing {{ $funds->firstItem() }} to {{ $funds->lastItem() }} of {{ $funds->total() }} Results
@endsection