@extends('admin.admin_master') @section('title') @if(session('adminId')) Admin Dashboard @endif @if(session('studentId')) Student Dashboard @endif @if(session('teacherId')) Teacher Dashboard @endif @endsection @section('content')

200

Students

More info

20

Teachers

More info

44

Blogs

More info

15

Courses

More info
@if(session('studentId')||session('teacherId')) @php $notices = App\Models\Notice::orderBy('id','desc')->get(); $notice_link = App\Models\NoticeLinkSetting::latest()->first(); @endphp
@foreach ($notices as $key => $row) @endforeach
Sl Notice Date Notice Action
{{ $key+1 }} {{ $row->date }} {{ Str::limit($row->description,50) }} @if(session('studentId')) @endif @if(session('teacherId')) @endif
@endif
@endsection