@extends('dashboard.master') @section('title', 'Edit Payment Receive') @push('css') @endpush @section('content')
Edit Sponsor Payment
@if (session('error'))
{{ session('error') }}
@endif
@csrf
{{-- --}} @if ($fundDetailType && count($fundDetailType) > 0) @foreach ($fundDetailType as $key => $fundDetail) @endforeach @endif
SL Details AmountFundTotal Previous Received Previous Discount Receive Discount Due
{{ ucfirst($fundDetail->fee_type) }}
    @if ($fundDetail->details) @foreach ($fundDetail->details as $Key => $detail)
  • {{ $detail->fee_name }}: {{ $detail->amount }}
  • @endforeach @endif
{{ $fundDetail->total }} {{ $fundDetail->prev_receive ?? 0 }} {{ $fundDetail->prev_discount ?? 0 }}
@error('total_amount')

{{ $message }}

@enderror
@error('receive_amount')

{{ $message }}

@enderror
@error('discount_amount')

{{ $message }}

@enderror
@push('js') @endpush @endsection