@extends('layouts.admin') @section('content')
Receiving payments from {{$conn->name}}
@if (session()->has('message'))
{!! session('message') !!}
@endif
@csrf
Enter the amount you received from the client @error('amount')
{{$message}}
@enderror
Details about the payment @error('comments')
{{$message}}
@enderror
Payment History
@foreach ($payments as $payment) @endforeach
Date/Time Amount Comments Received By
{{$payment->created_at->format('M d, Y')}}
{{$payment->created_at->format('h:i:s A')}}
{{$payment->amount}} {{$payment->comments}} {{$payment->user->first_name}} {{$payment->user->last_name}}
@endsection