@extends('admin.master.master') @section('content')

Posts

@include('admin.posts.filter')
@if($posts) @foreach($posts as $post) @endforeach @endif
Capa Post Categoria Status Ações
{{ $post->title }}
{{ $post->date_back }}
{{ $post->category()->first()->title }} {{ (!empty($post->category_parent()->first()->title) ? '/ ' . $post->category_parent()->first()->title : '') }} {{ $post->highlight_back }}
{{ $post->status_back }}
@csrf @method('DELETE') Restaurar
@endsection