@extends('layouts.app') @section('subtitle', 'Pusat Notifikasi') @section('content_body')
@if ($hasUnread) @endif
@forelse ($notifications as $notification) @include('notifications.components.notification-item', ['notification' => $notification]) @empty @endforelse
@if ($notifications->hasPages())
{{ $notifications->links() }}
@endif
@endsection @section('js') @parent @stop