@extends('admin.layouts.app') @section('title', 'Bildirimler - CBL Admin Panel') @section('content')

Bildirimler

Son bildirimlerinizi burada görüntüleyebilirsiniz.

@csrf
@if($notifications->count())
    @foreach($notifications as $n)
  • {{ $n->title }}

    {{ $n->message }}

    {{ $n->formatted_time }}

    @if($n->url) Görüntüle @endif @if(!$n->read_at)
    @csrf
    @else Okundu @endif
  • @endforeach
{{ $notifications->links() }}
@else

Bildirim bulunmuyor

Yeni bildirimler burada görünecek.

@endif
@endsection