@extends('admin.layouts.simple.master') @section('title', 'Students') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')
# | Image | User Name/ID | Batch | Contact | Father/Guardian Name | Pay Status/Fees | Status | Action | |
---|---|---|---|---|---|---|---|---|---|
{{ $key}} |
![]() |
{{ ($student->name != null) ? $student->name : '--' }} ({{$student->id}}) | {{ ($student->batch_id != null) ? $student->batch->name.'-'.$student->batch->batch_id : '--' }} | {{ ($student->contact != null) ? $student->contact : '--' }} | {{ ($student->email != null) ? $student->email : '--' }} | {{ ($student->guardian_name != null) ? $student->guardian_name : '--' }} | {{ ($student->pay_status == 1) ? 'Paid ('.$student->fees_amount.')' : 'Un-Paid' }} | {{ ($student->status == 1) ? 'Active' : 'In Active' }} |
|