@extends('layout.app') @section('content')

Semua Berita

@foreach ($posts as $post)
@php $date = $post->tanggal->format('d'); @endphp
{{ $post->tanggal->format('d') }} {{ $post->tanggal->format('M') }}
@php $isi_berita = strip_tags($post->body) ?? null; $isi = substr($isi_berita, 0, 100); $isi = substr($isi_berita, 0, strrpos($isi, " ")); @endphp

{!! $isi !!}

selengkapnya
@endforeach

{{ $posts->links() }}
@endsection