@extends('layouts.adminapp') @section('content')
{{__('lng.Back')}}
{{--
--}}

{{$Student->name}}

{{$Student->mobile}} {{$Student->place}} {{$Student->Class->title ?? __('lng.PassOut')}} {{$Student->batch_year}}
@if ($Balance > 0) {{__('lng.BalanceAmount')}} : @currency($Balance) @else {{__('lng.Advance')}} : @currency(abs($Balance)) @endif
@php $i=0;@endphp @foreach ($Payables as $Payable) @php $Month = date("F-Y",strtotime($Payable['month']));@endphp @endforeach
{{__('lng.SiNo')}} {{__('lng.Month')}} {{__('lng.BatchYear')}} {{__('lng.Amount')}} {{__('lng.AdditionalCharge')}} {{__('lng.TotalAmount')}} {{__('lng.PaidFee')}}
{{++$i}} {{$Month}} {{$Payable['BatchYear']}} @currency($Payable['amount']) @currency($Payable['AdditionalAmount']) @currency($Payable['PyableAmount']) @currency($Payable['PayAmount'])
@endsection