Source code Sponsor
@php $unreadCount = auth()->guard('admin')->user()->unreadNotifications->count(); @endphp @if($unreadCount > 0) {{ $unreadCount }} @endif

Notifications

@php $notifications = auth()->guard('admin')->user()->notifications()->latest()->take(10)->get(); @endphp @if($notifications->count() > 0) @foreach($notifications as $notification) @php $data = $notification->data; $isUnread = is_null($notification->read_at); $ticketId = $data['ticket_id'] ?? ''; $url = route('admin.tickets.show', $ticketId); @endphp
@if($isUnread) @else @endif
{{ $data['ticket_subject'] ?? 'Ticket Message' }}
{{ $data['sender_name'] ?? 'System' }}: {{ Str::limit($data['message'] ?? '', 50) }}
{{ $notification->created_at->diffForHumans() }}
@endforeach @else
No notifications yet
@endif
View All
@csrf
Paweł Kuna
UI Designer
Status Profile Feedback
Settings Logout
  • Dashboard
  • @if (hasPermission(['KYC Management']))
  • KYC Requests
    All Requests Pending Requests Rejected Requests
  • @endif @if (hasPermission(['Category Management', 'Tags Management', 'Brand Management']))
  • Manage Products
    @if (hasPermission(['Category Management']))
    Products
    @endif @if (hasPermission(['Category Management']))
    Categories
    @endif @if (hasPermission(['Tags Management']))
    Products Tags
    @endif @if (hasPermission(['Brand Management']))
    Brands
    @endif
    Reviews
  • @endif @if (hasPermission(['Order Management']))
  • Orders
    All Orders
    Pending Orders
    Processed Orders
    Packed Orders
    Shipped Orders
    In Transit
    Out For Delivery
    Delivered
    Canceled
  • @endif @if (hasPermission(['Ecommerce Management']))
  • Ecommerce
    Flash Sales
    Coupons
    Shipping Rules
  • @endif @if (hasPermission(['User Management']))
  • Users
  • @endif @if (hasPermission(['Ticket Management']))
  • Tickets
  • @endif @if (hasPermission(['Section Management']))
  • Manage Sections
    Offer Slider
    Sliders
    Hero Banners
    Popular Category Products
    Products Section
    Our Features
    Social Links
  • @endif @if (hasPermission(['Subscriber Management']))
  • Subscribers
  • @endif @if (hasPermission(['Withdraw Management']))
  • Withdraws
    Withdraw Methods
    Withdraw Requests
  • @endif @if (hasPermission(['Page Management']))
  • Page Builder
  • @endif @if (hasPermission(['Advertisement Management']))
  • Advertisement
  • @endif @if (hasPermission(['Contact Management']))
  • Contact
    Contact Setting
    Contact Messages
  • @endif @if (hasPermission(['Payment Setting']))
  • Payment Settings
  • @endif @if (hasPermission(['Settings Management']))
  • Settings
  • @endif
{{--

Notifications

Example 1
Change deprecated html tags to text decoration classes (#29604)
Example 2
justify-content:between ⇒ justify-content:space-between (#29734)
Example 3
Update change-version.js (#29736)
Example 4
Regenerate package-lock.json (#29730)
Archive all
Mark all as read
--}}
{{ auth('admin')->user()->name }}
{{ auth('admin')->user()?->getRoleNames()?->first() }}
Profile
Settings Logout
@csrf