@extends('layouts.partials.master') @section('title', 'Marketing') @push('styles') @endpush @section('content') @include('layouts.components.section-title', ['title' => 'Ver destaques']) {{-- filters --}}
@include('layouts.components.alerts')
Adicionar @if ($highlights instanceof \Illuminate\Pagination\LengthAwarePaginator) Ver todos @else Paginar @endif
@include('layouts.components.per-page', ['subject' => $highlights, 'route' => 'mkt_highlights'])
@if (count($languages) > 0) @endif @forelse($highlights as $highlight) @if (count($languages) > 0) @endif @empty @endforelse
ID Título Categoria Imagem Início FimTraduçõesAções
{{ $highlight->id }} {{ $highlight->title }} {{ $highlight->category }} Imagem {{ $highlight->start_at ?? '' }} {{ $highlight->end_at ?? '' }} @include('layouts.components.display-flags', ['context' => $highlight])
@if (!$highlight->trashed())
@csrf @method('DELETE')
@else
@csrf
@csrf @method('DELETE')
@endif

{{ __('translations.no_results') }}

@include('layouts.components.pagination', ['subject' => $highlights]) @include('layouts.components.confirmation-modal') @endsection