@extends('layouts.trading') @section('content')

Notifications

@forelse ($notifications as $notification)
{{ $notification->title }}
{{ $notification->message }}
{{ $notification->created_at->diffForHumans() }}
@unless ($notification->read_at)
@csrf
@endunless
@empty

No notifications yet.

@endforelse
{{ $notifications->links() }}
@endsection