@extends('layouts.adminapp') @section('content') {{-- Pay Head --}}

{{__('lng.Notification')}}

{{__('lng.NotificationTable')}}
{{--
--}} {{-- {{__('lng.CreateNew')}} --}}
@if ($SearchResult) @php echo $SearchResult @endphp @else
{{-- --}} @php $si=0; @endphp @foreach($Notifications as $Notification) {{-- --}} @endforeach
{{__('lng.SiNo')}} {{__('lng.User')}} {{__('lng.Contact')}} {{__('lng.Type')}} {{__('lng.Date')}}{{__('lng.Action')}}
{{++$si}} {{$Notification->User->name ?? ''}} {{$Notification->User->mobile ?? ''}} {{$Notification->type}} {{date("F-d-Y",strtotime($Notification->date))}} {{__('lng.Accept')}}
@csrf @method('delete')

{{$Notifications->count()}} {{__('lng.Items')}}

@endif
{{-- --}} @endsection