@extends('layouts.shop') @section('title', 'Notifications - Delivery Agent') @section('content')
@include('delivery.partials.sidebar')

Notifications

@if($notifications->count() > 0)
@foreach($notifications as $notification)

{{ $notification->data['title'] ?? 'Notification' }}

{{ $notification->created_at->diffForHumans() }}

{{ $notification->data['message'] ?? '' }}

@endforeach
{{ $notifications->links() }}
@else

No notifications

You're all caught up!

@endif
@endsection