@extends('layouts.seller') @section('title', 'All Notifications') @section('content')
@forelse($notifications as $notification)
{{ $notification->title }}
{{ $notification->created_at->diffForHumans() }}

{{ $notification->body }}

@if($notification->action_url) View @endif @if(!$notification->is_read)
@csrf
@endif
@empty
No Notifications

You're all caught up!

@endforelse
@if($notifications->hasPages()) @endif
@endsection