@extends('layouts.franchise', ['heading' => 'Notifications']) @section('content')
Panel alerts for stock, commission, pickup and requests.
@forelse($notifications as $notification)
{{ $notification->title }}
{{ $notification->message }}
@if(! $notification->read_at) New @endif
{{ optional($notification->created_at)->format('d M Y h:i A') }} @if($notification->link) Open @endif
@empty
No notifications yet.
@endforelse
{{ $notifications->links() }}
@endsection