@extends('layout.admin_layout') @section('title', 'admin-dashboard') @section('body') @section('header', 'News') @section('badge') @endsection

News list

@csrf
{{-- --}}
New
@forelse ($news as $news) @empty @endforelse
# No Heading Content Created date
{{ $news->heading }} {!! $news->content !!} {{ date('M-d-Y H:i:s',strtotime($news->created_at)) }} {{-- View --}} Edit Delete
No data found.
@endsection @push('scripts') @endpush