@extends('admin::layouts.plane')
@section('page_heading') {{$title}} @endsection
@section('content')
@if(count($obClassList) > 0)
| Sno. |
Observer Name |
Class Section |
Action |
@php $i = 1; @endphp
@foreach($obClassList as $key => $val)
| {{$i}} |
{{$title}} |
{{$arrClasses[$val->class]}} {{$val->section}} |
|
@php $i++; @endphp
@endforeach
@endif
@stop