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

Blog

@foreach ($data as $post)
Gambar postingan

{{ $post->title }}

  • Diposting oleh Admin

  • {{ date('d M Y', strtotime($post->created_at)) }}

{!! substr($post->content, 0, 300) !!}..

Baca Selengkapnya
@endforeach
@endsection