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

{{$title}}

@include('cms.includes.alert_messages')
@if(count($posts)>0) @foreach($posts as $post) @endforeach @else @endif
ID VIS. TÍTULO DO POST CATEGORIA STATUS ATUALIZAÇÃO AÇÕES
{{$post->id}} {{$post->totalVsistema}} {{$post->title}}
{{$post->categoria->label ?? 'Sem categoria'}}
@if($post->status == 0) Publicado @else Rascunho @endif
{{$post->updated_at ? $post->updated_at->diffForHumans() : 'Não foi atualizado!'}}
{{ csrf_field() }}
Editar
Não há posts cadastrados!
{{$posts->appends(Request::except('page'))->links()}}
@endsection