@extends('layouts.backend.app') @section('title', 'Notification') @push('css') @endpush @section('content')
Notification Create
@foreach ($notifications as $notification) @endforeach
ID User Name Title Message Status Created At Action
{{ $notification->id}} ({{$notification->user_id}}){{ $notification->user->name }} {{ $notification->title }} {{ Str::limit($notification->message,200) }} @if($notification->status == true) Read @else Unread @endif {{ $notification->created_at->diffForHumans() }}
@csrf @method('DELETE')
{{ $notifications->links() }}
@endsection @push('js') @endpush