@include('admin.includes.alerts')
| Titulo |
Descrição |
{{-- Destaque | --}}
Status |
Categoria |
Imagem |
Opções |
@foreach ($posts as $post)
{{-- {{ dd($post->title) }} --}}
|
{{ $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;">
|
|
@endforeach
| Titulo |
Descrição |
Opções |