notification_partial.blade.php 526 B

12345678910111213141516
  1. @forelse($notifications as $notification)
  2. @include('application.notifications.type.'.snake_case(class_basename($notification->type)))
  3. @empty
  4. <br>
  5. <h4 class="text-danger text-center">No Notification Found!</h4>
  6. @endforelse
  7. <div class="text-center">
  8. {{$notifications->appends(request()->query())->links('paginator')}}
  9. </div>
  10. <script type="text/javascript">
  11. $('.page-link').on('click',function(e) {
  12. e.preventDefault();
  13. $('#notification_load').load($(this).attr('href'));
  14. });
  15. </script>