@extends('student.layouts.app') @section('title', $notification->title) @section('content')

{{ $notification->title }}

{{ $notification->created_at->format('d M, Y h:i A') }} {{ $notification->is_global ? __('dashboard.All School') : __('dashboard.Targeted') }}
{!! nl2br(e($notification->description)) !!}
@if($notification->attachment)

{{ __('dashboard.Attachment') }}

{{ __('dashboard.This notification has an attachment available for download.') }}
{{ __('dashboard.Download/View') }}
@if($notification->is_image)
Attachment
@endif @endif
@endsection