@extends('backend.global.layout')
@section('content')
@include('backend.global.notifications')
| Titulo | Categoria | Tags | Estado | ACÇÕES |
|---|---|---|---|---|
| {{ $n->title }} | @if ($n->blog_category_id == null)sem categoria associada | @else{{ $n->category->name }} | @endif@if (empty($n->sub_category_ids)) sem subcategorias associadas @else @foreach ($n->subCategories() as $subCategory) {{ $subCategory['name'] }}@if (!$loop->last) , @endif @endforeach @endif | {{ $n->status ? 'Activo' : 'Inativo' }} | @include('backend.global.table-actions', [ 'edit_route' => route('manager.blog.edit', $n->id), 'show_route' => route('manager.blog.show', $n->id), 'delete_route' => route('manager.blog.delete', ['id' => $n->id]), ])