@extends('admin.template') @section('title', 'News') @section('content') @if (session('success'))
{{ session('success') }}
@endif

News

News

{{--
@csrf --}}
@csrf
@foreach ($dataNews as $news) @endforeach
Tanggal Title Image Content Source time
{{ date('d-m-Y', strtotime($news->created_at)) }} {{ $news->title }} {{ \Illuminate\Support\Str::limit(strip_tags($news->content), 80) }} {{ $news->source }} {{-- ===== EDIT BUTTON ===== --}} {{-- ===== DELETE BUTTON ===== --}} {{-- =============== EDIT MODAL =============== --}} {{-- =============== DELETE MODAL =============== --}}
@endsection @push('script') {{-- ===== SUMMERNOTE WYSIWYG EDITOR ===== --}} @endpush