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

Artigo

 Novo Artigo @stop @section('content')

Lista de Artigos

@foreach($posts as $post) @endforeach
ID Título Texto Data
{{ $post->id }} {{ $post->title }} {{strip_tags($post->body)}} {{ $post->created_at }}  Editar  Apagar
@stop @section('js') @endsection