@extends('admin.layouts.app') @section('title', 'নোটিফিকেশন ম্যানেজমেন্ট') @section('panel') @php $pageTitle = 'নোটিফিকেশন ম্যানেজমেন্ট'; @endphp @push('breadcrumb-plugins') নতুন নোটিফিকেশন @endpush
| শিরোনাম | Audience | Recipient | Read Progress | Email রিপোর্ট | স্ট্যাটাস | পাঠানোর সময় | অ্যাকশন |
|---|---|---|---|---|---|---|---|
|
{{ $notice->title }}
ID: {{ $notice->notice_id }}
|
{{ $audienceOptions[$notice->audience_type] ?? $notice->audience_type }} | {{ number_format($totalRecipients) }} |
{{ $totalRead }}/{{ $totalRecipients }}
{{ number_format($readPercentage, 0) }}%
|
@if((bool) $notice->send_email)
Sent: {{ (int) $notice->email_sent }}
@else
Email বন্ধ
@endif
Pending: {{ (int) $notice->email_pending }} Failed: {{ (int) $notice->email_failed }} |
@if($notice->status === 'sent') Sent @elseif($notice->status === 'draft') Draft @elseif($notice->status === 'queued') Queued @else Cancelled @endif |
@if($notice->sent_at)
{{ \Illuminate\Support\Carbon::parse($notice->sent_at)->format('d M Y') }}
{{ \Illuminate\Support\Carbon::parse($notice->sent_at)->format('h:i A') }}
@else
এখনো পাঠানো হয়নি
@endif
|
দেখুন
@if($notice->status === 'draft')
@endif
|
কোনো নোটিফিকেশন পাওয়া যায়নিনতুন একটি নোটিফিকেশন তৈরি করুন। নতুন নোটিফিকেশন |
|||||||