{{-- navbar - side --}}
@include('admin.layouts.nav')
{{ __('Notifications') }}
@if(Request::exists('search'))
@else
@endif
| {{ __('Title') }} |
{{ __('Message') }} |
{{ __('Image') }} |
{{ __('Target Users') }} |
{{ __('Sent') }} |
{{ __('Failed') }} |
{{ __('Created On') }} |
{{ __('Actions') }} |
@forelse ($notifications as $notification)
| {{ $notification->title }} |
{{ $notification->message }} |
@if ($notification->image != null)
@else
{{ __("N/A") }}
@endif
|
{{ $notification->total_users }} |
{{ $notification->total_sent }} |
{{ $notification->total_failed }} |
{{ \Carbon\Carbon::parse($notification->created_at)->format('jS F Y') }} |
|
@empty
|
{{ __('Looks like there\'s a VOID!') }}
|
@endforelse
{{ $notifications->withQueryString()->render("pagination::bootstrap-5") }}
@endsection
@extends('admin.layouts.footer')