@extends('layouts.adminapp') @section('content')
@include('PrintHeader.header')

{{__('lng.StudentDetails')}}

@php $DOB = date("F-Y",strtotime($Student->dob));@endphp
{{__('lng.Name')}} {{__('lng.Class')}} {{__('lng.BatchYear')}} {{__('lng.Photo')}} {{__('lng.DOB')}} {{__('lng.Guardian')}} {{__('lng.Gender')}} {{__('lng.HouseName')}} {{__('lng.Place')}} {{__('lng.Mobile')}}
{{$Student->name}} {{$Student->Class->title}} {{$Student->batch_year}} {{$DOB}} {{$Student->guardian}} {{$Student->gender}} {{$Student->housename}} {{$Student->place}} {{$Student->mobile}}

{{__('lng.MonthlyReport')}}

@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'])
@if ($Balance > 0) {{__('lng.BalanceAmount')}} @else {{__('lng.Advance')}} @endif @currency(abs($Balance))
{{__('lng.Back')}}
@endsection