@extends('layouts.teacher') {{ config('app.name', 'Laravel') }} | Teacher | Notification @section('main-content')

Records / Notifications

( Higher Authorities )
Notification List
@if(count($announcements) != 0) @foreach($announcements as $key => $announcement) @endforeach @else @endif
# Title Content Date Actions
{{ $loop->iteration }} {{ ucwords($announcement->subject) }} {{ucfirst(substr($announcement->message,0,50))}}{{strlen($announcement->message)>50?"...":""}} {{date('d-m-Y',strtotime($announcement->created_at))}}
No notification found
@endsection