@extends('adminlte::page')
@section('title_postfix', ' - Artigos')
@section('content_header')
Artigo
Novo Artigo
@stop
@section('content')
| ID |
TÃtulo |
Texto |
Data |
|
@foreach($posts as $post)
| {{ $post->id }} |
{{ $post->title }} |
{{strip_tags($post->body)}} |
{{ $post->created_at }} |
Editar
Apagar
|
@endforeach
@stop
@section('js')
@endsection