@extends('adminlte::page') @section('title_postfix', ' - Blog') @section('content_header')

Blog

 Novo Artigo @stop @section('content')
@foreach($posts as $post) @endforeach
ID Titulo Autor Data
{{ $post->id }} {{ $post->title }} {{ $post->author }} {{ $post->created_at }}  Editar         Apagar
@stop @section('js') @endsection