@extends('admin::layouts.master') @php $pageTitle = 'نوتیفیکیشن‌ها'; @endphp @section('title', 'لیست نوتیفیکیشن‌ها') @push('css') @endpush @section('content')
@if (request()->hasAny(['q','status','user'])) حذف فیلترها @endif
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if (request()->hasAny(['q', 'status', 'user']))
@endif
@forelse($notifications as $notification) @empty @endforelse
# عنوان عمومی کانالها مختص به مدیر پیام وضعیت تاریخ ایجاد عملیات
{{ $loop->iteration }} {{ $notification->title }} @if($notification->send_email) ایمیل @endif @if($notification->send_sms) پیامک @endif درون‌سایتی @if($notification->for_admin && !$notification->is_public) فقط مدیران @elseif(!$notification->for_admin && $notification->is_public) همه کاربران @else کاربران خاص @endif @if($notification->for_admin) بله @else خیر @endif {{ Str::limit($notification->message, 80) }} @if ($notification->is_read) خوانده شده @else خوانده نشده @endif {{ $notification->created_at->diffForHumans() }}
هیچ نوتیفیکیشنی وجود ندارد.
@include('components.pagination', ['paginator' => $notifications])
@endsection @push('js') @endpush