@extends('backEnd.master') @section('title') @lang('communicate.notice_board') @endsection @section('mainContent')

@lang('communicate.all_notices')

@php $i = 0; @endphp @if(isset($allNotices)) @foreach($allNotices as $value)
{{@$value->notice_title}}
@php $i++; @endphp
{!! @$value->notice_message !!}

Publish Date : {{@$value->publish_on != ""? dateConvert(@$value->publish_on):''}}

@endforeach @endif @if(@$allNotices->count()<1)
@lang('communicate.sorry_there_is_no_notice_for_you') !
@endif
@endsection