Project Staff Payment Budget Allocations

@if (count($project_staff_payment_budget_allocations) > 0)
@foreach ($project_staff_payment_budget_allocations as $key => $project_user_budget) {{-- edit payment deposit modal --}} {{-- end of edit payment deposit modal --}} @endforeach
#Id Staff Member Allocated Amount Created By Action
{{ $key + 1 }} {{ $project_user_budget->staff_member->first_name }} {{ $project_user_budget->staff_member->last_name }} {{ $project_user_budget->allocated_amount }} {{ $users_array[$project_user_budget->created_by]['first_name'] ?? '' }} {{ $users_array[$project_user_budget->created_by]['last_name'] ?? '' }}
@if (Auth::user()->can('project-staff-payment-budget-edit')) @endif @if (Auth::user()->can('project-staff-payment-budget-delete'))
@csrf @method('DELETE')
@endif

@else @endif
{{-- add new project staff payment budget/allocation --}}
Add New Project Staff Payment Budget/Allocation

@csrf
{{-- $all_projects --}}



{{-- end of add new project staff payment budget/allocation --}}