@extends('layouts.store.store') @section('title', 'Store Notifications') @section('content') @push('styles') @endpush @include('partials.header') @include('layouts.store.sidebar') Notifications Notifications Clear All Notifications @if ($store && $store->unreadNotifications->count()) @foreach ($store->unreadNotifications as $notification) {{ $notification->data['title'] ?? 'Notification' }}: {{ $notification->created_at->diffForHumans() }} {{ $notification->data['message'] ?? '' }} @endforeach @endif @push('script') @endpush @stop