@extends('layouts.master') @push('style') @endpush @section('title', __('accounting.recieve_payments')) @section('content_title', __('accounting.recieve_payments')) @section('content_summary', __('accounting.recieve_payments_summary')) @section('main_content') @if (Session::has('success'))
{{ Session::get('success') }}
@endif @if (Session::has('error'))
{{ Session::get('error') }}
@endif
{{-- remove extra_form_code.txt --}}
@csrf
{{--
--}} {{--
--}} {{--
--}}
{{--

Fee Invoice Date : {{ \Carbon\Carbon::parse($feeInvoice->fee_invoice_date)->format('M-Y') }}

--}}
@if ($type == 'invoice') {{-- {{ $student['academicClass']['academicFeeSetUp'] }} --}} @if ($type == 'invoice') {{-- {{ $feeInvoiceDetails }} --}} @foreach ($feeInvoiceDetails as $item) @endforeach @endif
{{ __('accounting.fee_category') }} {{ __('accounting.payment_account') }} {{ __('accounting.payment_method') }} {{ __('accounting.amount') }} {{ __('accounting.discount') }} {{ __('accounting.fine') }} {{ __('accounting.payable') }} {{ __('accounting.recieve') }} {{ __('accounting.due') }}
@if ($item->discount_id) @php $discountValue; if ($item->discount->discount_type == 1) { $discountValue = $item->discount->discount_amount; } else { $discountValue = ceil( ($item->amount * $item->discount->discount_amount) / 100, ); } @endphp recieve }}> @else recieve }}> @endif
Total {{ __('accounting.total_amount') }} {{ __('accounting.total_discount') }} {{ __('accounting.total_fine') }} {{ __('accounting.total_payable') }} {{ __('accounting.total_recieve') }} {{ __('accounting.total_due') }}
@else
Fee category amount discount Recieve Due
Total Total Amount Total Discount Total Recieve Total Due
@endif {{-- Add Row --}} {{-- --}}
@endsection @push('script') @endpush