@extends("admin.template.layout") @section("header") @stop @section("content")
@if(check_permission('notification','Create'))
Add New
@endif
@if ( session('message'))
× {{ session('message') }}
@endif
@foreach ($notification_list as $key => $list) @if($list->image) @else @endif @endforeach
# Title Description Image Created Date Actions
{{ $key + 1 }} {{ $list->title }} {{ $list->description }}{{web_date_in_timezone($list->created_at,'d-M-Y h:i A')}}
    @if(check_permission('notification','Delete'))
  • @endif
@endsection @section('footerJs') @endsection