@extends('layouts.admin') @section('content') @include('admin._partials.breadcrumb')
@include('admin.includes.alerts')
{{-- --}} @foreach ($posts as $post) {{-- {{ dd($post->title) }} --}} {{-- --}} @endforeach
Titulo DescriçãoDestaqueStatus Categoria Imagem Opções
{{ $post->title }} {{-- {{ dd($post->title) }} --}} {!! substr($post->description, 0, 100) !!} @if ($post->featured == 1 ) Destaque ativo @else Destaque desativado @endif {{-- @php echo ($post->status == 'A' ? ' Ativo' : ' Rascunho') @endphp --}} @if ($post->status == 'A' ) Ativo @else Rascunho @endif {{ $post->category->title }} image}") }}" alt="{{ $post->title }}" style="max-width: 90px;">
Titulo Descrição Opções
@endsection