@extends('backend.global.layout') @section('content') @include('backend.global.notifications')
@include('backend.global.header-card', ['button_label' => 'Adicionar Oportunidade', 'button_url' => route('manager.campaigns.create')])
@if(isset($campaigns) && count($campaigns) > 0) {{ csrf_field() }} @foreach($campaigns as $n) @include('backend.global.table-actions', ['show_route' => route('manager.campaigns.show', $n->id), 'edit_route' => route('manager.campaigns.edit', $n->id), 'delete_route' => route('manager.campaigns.delete', ['id' => $n->id])]) @endforeach
Titulo Vísivel Categoria Em Destaque ACÇÕES
{{ $n->title }} {{ $n->visible ? 'Sim' : 'Não' }} {{ $n->category != null ? $n->category->name : '-' }} {{ $n->highlight ? 'Sim' : 'Não' }}
@else @include('backend.snippets.norecords') @endif
@endsection