@extends('layouts.app') @section('title','Notificaciones — '.config('app.name')) @section('content')

Notificaciones

Novedades importantes de tu cuenta y tus cursos.

@csrf
@forelse($notifications as $notification)@empty@endforelse
{{ $notification->read_at ? '○' : '●' }}{{ $notification->data['title'] ?? 'Notificación' }}
{{ $notification->data['message'] ?? '' }}
{{ $notification->created_at->diffForHumans() }}@if($notification->data['url'] ?? null)Ver@endif
No tienes notificaciones.
{{ $notifications->links() }}
@endsection