@extends('adminlte::page') @section('title', 'Organizadores de Eventos') @section('css') @stop @section('content_header')
@include('components.alerts')
@include('components.breadcrumbs', ['items' => ['Eventos' => '#', 'Organizadores' => 'active']])

Organizadores (MEC)

@if(auth()->user()->isAdmin()) Sincronización Masiva @endif @if(auth()->user()->isAdmin()) Añadir Organizador @endif
@stop @section('content')
@if(auth()->user()->isAdmin()) @endif @foreach($organizers as $org) @if(auth()->user()->isAdmin()) @endif @endforeach
ID WP ID Nombre / Entidad Contacto Estado Sinc.Acciones
{{ $org->id }} @if($org->wp_id) {{ $org->wp_id }} @else No vinculado @endif {{ $org->name }} @if($org->url)
{{ $org->url }} @endif
@if($org->email)
{{ $org->email }}
@endif @if($org->phone)
{{ $org->phone }}
@endif @if(!$org->email && !$org->phone) Sin datos de contacto @endif
@if($org->wp_id) Sincronizado @else Solo Local @endif
{{-- Botón dinámico Activar/Desactivar --}}
@csrf @method('PATCH') @if($org->active) @else @endif
@stop @section('js') @stop