@extends('backend.layouts.app') @section('title', 'All Notice List') @push('style') @endpush @section('content')
All Notice List
@foreach ($notices as $index => $notice) @endforeach
# Created At Title Notice For Pinned Status Seen By Actions
{{ $index + 1 }} {{ $notice->created_at->format('d M, Y') }} {{ $notice->title }} {{ $notice->notice_for }} {{ $notice->seenBy }}
{{ $notices->links() }}
@endsection @push('script') @endpush