@extends("admin.template.layout") @section("header") @stop @section("content")
@if(GetUserPermissions('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 User Type Image Created Date Actions
{{ $key + 1 }} {{ $list->title }} {{ $list->description }} @if($list->user_type == 0) All @elseif($list->user_type == 2) User @else Vendor @endif{{ get_date_in_timezone($list->created_at, config('global.datetime_format')) }} @if(GetUserPermissions('notification_delete'))
@endif
@endsection @section('footerJs') @endsection @section("script") @stop