@extends('layouts.app') @section('title', 'Notification Users List') @section('content')

Notification Users

{{-- Alert Messages --}} @include('common.alert')
Title: {{$notificationInfo->title}}
Message: {{$notificationInfo->message}}
@if(count($notificationLogs)>0) @foreach ($notificationLogs as $notification) @endforeach @else @endif
Name Email Send to Created Date Status
{{ $notification->notificationUser->name }} {{ $notification->notificationUser->name }} {{ $notification->notificationUser->mobile_number }} {{ $notification->created_at }} {{ $notification->status }}
There are no data.
{{-- $notificationLogs->links() --}} {{ $notificationLogs->appends(request()->query())->links() }}
@endsection @push('script') @endpush