@extends('layouts.user') @section('title', 'Channel notifications') @section('content') @if($user_notifications->total())

My Notifications


@forelse($user_notifications as $notification) @empty @endforelse
Notification Date Action
{!! $notification->message !!}
{{$notification->created_at->diffForHumans()}}

No matching notifications

{{ $user_notifications->links() }} @else
Your notifications live here
Subscribe to your favorite channels to get notified about their latest videos.
@endif @endsection