@extends('admin.layouts.simple.master') @section('title', 'Students') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')

All Students Fees

@endsection @section('breadcrumb-items') @endsection @section('content')
Search Student
@csrf
Fees
{{-- Add Fees --}}
@if(Session::has('message')) @endif
@foreach($fees as $key => $fee) @endforeach
# Student Email Batch Fees Month-Year Fees Amount Pay Status Pay Date Action
{{ $key}} {{ ($fee->student->full_name) ?? $fee->student->name }} {{ ($fee->student->email) ?? '--' }} {{ ($fee->student->batch_id != null) ? $fee->student->batch->name.'-'.$fee->student->batch->batch_id : '--' }} {{ $fee->month.'-'.$fee->year }} {{ ($fee->fees_amount) ?? '--' }} {{ ($fee->pay_status == 0) ? 'Un-Paid' : 'Paid' }} {{ ($fee->pay_date) ?? '--' }}
@endsection @section('script') @endsection