@extends('layouts.landing') @section('title', 'Anuncios') @section('content')
@if(session('success')) @endif
@forelse($anuncios as $anuncio) @php $cfg = $anuncio->typeConfig(); @endphp @empty @endforelse
# Título Tipo Audiencia Vence Activo Opciones
{{ $anuncio->id }} {{ $anuncio->title }} @if($anuncio->image_path) @endif {{ $cfg['label'] }} @foreach($anuncio->audience as $aud) {{ \App\Models\Anuncio::ROLES[$aud] ?? $aud }} @endforeach @if($anuncio->expires_at) {{ $anuncio->expires_at->format('d/m/Y H:i') }} @else Sin vencimiento @endif
@csrf @method('PATCH')
@csrf @method('DELETE')
No hay anuncios creados.
{{ $anuncios->links() }}
@endsection @section('scripts') @include('layouts._partials.delete') @endsection