@php // ব্লেড লেভেলে ডাটাবেজ কানেকশন হ্যান্ডেলিং if(!isset($notices) || count($notices) == 0) { $search = request('search'); $notices = \Illuminate\Support\Facades\DB::table('notices') ->when($search, function ($query, $search) { return $query->where('title', 'like', "%{$search}%") ->orWhere('published_at', 'like', "%{$search}%"); }) ->orderBy('published_at', 'desc') ->get(); } @endphp Premium Admin Panel - Notifications

Send Notification

Compose and broadcast push notifications to your users.

@if ($errors->any())
@foreach ($errors->all() as $error)

{{ $error }}

@endforeach
@endif
@csrf
Cancel Edit Mode
@csrf @if(!isset($settings) || !$settings->vapid_public_key)
VAPID keys not generated yet. Go to Settings to generate them first.
@endif @if(request('target') === 'single' && request('user_id')) @php $selectedUser = collect($users)->firstWhere('id', request('user_id')); @endphp
@else
@endif
Back to Dashboard @if(session('success'))
{{ session('success') }}
@endif @if(session('warning'))
{{ session('warning') }}
@endif @if(session('error'))
{!! session('error') !!}
@endif

Notifications History

Manage, edit, or delete previously sent notifications.

@if(request('search')) Clear Filter @endif
@if(isset($notices) && count($notices) > 0) @foreach($notices as $notice) @endforeach @else @endif
Image Title Description Date Actions
@if(isset($notice->image) && $notice->image) Thumb @else N/A @endif {{ $notice->title }} {{ $notice->description }} {{ $notice->published_at ? date('d M, Y', strtotime($notice->published_at)) : '-' }}
@csrf @method('DELETE')

No notifications found in history.