@extends('admin.layouts.simple.master') @section('title', 'Students') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')
# | Student | 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) ?? '--' }} |
|