@extends('layout.main') @section('content')
@if($all_notification->count() > 0) @foreach($all_notification as $notification)
{{ $notification->data['data'] ?? '(Notifikasi tanpa pesan)' }}
{{ $notification->created_at->diffForHumans() }}
@endforeach @else

{{ __('No notifications for you at the moment!') }}

@endif
@endsection