@extends('admin.layouts.admin') @section('title', 'Quản lí thông báo hệ thống') @section('content')
THÊM THÔNG BÁO MỚI
@csrf
📋 DANH SÁCH THÔNG BÁO
@forelse ($noticeSystems as $notification) @empty @endforelse
# Thao tác Người đăng Tiêu đề Nội dung Ngày tạo
{{ $notification->id }}
{{ substr($notification->user->username, 0, 1) }}
{{ $notification->user->username }}
{{ $notification->title }}
Đang hoạt động
{!! strip_tags($notification->content) !!}
{{ $notification->created_at->format('d/m/Y') }}
{{ $notification->created_at->format('H:i') }}
Chưa có thông báo nào

Hãy tạo thông báo đầu tiên cho hệ thống

@if($noticeSystems->hasPages())
{{ $noticeSystems->appends(request()->all())->links('pagination::bootstrap-4') }}
@endif
@endsection @section('script') @endsection