@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@can('notice.delete') @endcan @can('notice.create') {{ __('Add Notice') }} @endcan
@php $notices= App\NoticeBoard::where('course_id',$cor->id)->orderBy('created_at','desc')->get(); @endphp @foreach($notices as $cat) @endforeach
# {{ __('Title') }} {{ __('Notice Message') }} {{ __('Status') }} {{ __('Action') }}
1 {{$cat->title}} {!!$cat->content!!}
@can('notice.create') @if($cat->status == '1') {{ __('Resend') }} @endif @endcan
{{ __('If Status is active then resend will be shown') }}