@extends('layouts.admin.master') @section('title') View Notice @endsection @section('content')

Notice

Title

{{ $notice->title }}

Expiry Date

{{ date('d M, Y', strtotime($notice->expiry_date)) }}

Status

{{ $notice->status == 1 ? 'Active' : 'Inactive' }}

Visibility

{{ $notice->visibility == 1 ? 'Visible' : 'Hidden' }}

Description

{!! $notice->description ?? '' !!}
Attachment
@endsection