@extends('adminlte::page')
@section('title_postfix', ' - Blog')
@section('content_header')
Blog
Novo Artigo
@stop
@section('content')
| ID |
Titulo |
Autor |
Data |
|
@foreach($posts as $post)
| {{ $post->id }} |
{{ $post->title }} |
{{ $post->author }} |
{{ $post->created_at }} |
Editar
Apagar
|
@endforeach
@stop
@section('js')
@endsection