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

Lead Details

@if (session('success')) @endif
Deposit
{{-- --}}
@foreach ($leads->deposit as $agent) @endforeach
Lead Name Agent Name Date Deposit Actions
{{ $leads->fullname }} {{ $agent->agents->name ?? "User Delete" }} ${{ number_format($agent->deposit ?? 0, 2) }} {{ $agent->depositDate }}
Comments
{{-- --}}
@foreach ($comments as $comment) @endforeach
Date Comment Actions
{{ $comment->date }}

{{ $comment->comment }}

{{-- Add Deposit modal --}} {{-- Add Comment modal --}}
@endsection