@extends('backend.school_admin.layout_app') @section('page_cs') @endsection @section('content')

View Student

Student List

@php $serial = 1; @endphp @foreach($data['student_list'] as $row) @php $serial++ @endphp @endforeach
# Image Student Name Institution Class Section Action
{{ $serial }} @if($row->student_photo != '') @else @endif {{ $row->student_name }} @if(isset($row->institute_name)) {{$row->institute_name}} @endif @if(isset($row->master_classes->class_name) && $row->master_classes->class_name) {{ $row->master_classes->class_name }} @endif @if(isset($row->class_section->section_name) && $row->class_section->section_name) {{ $row->class_section->section_name }} @endif Edit | Delete
@endsection @section('page_js') @endsection