@extends('panel.app') @section('content')

Vista previa del archivo importado

@if($rows->isEmpty())
No se encontraron filas en el archivo.
@else @foreach($rows as $i => $row) @php // Extraer el ID del video de la URL preg_match('/video\/(\d+)/', $row['video_url'], $matches); $videoId = $matches[1] ?? null; @endphp @endforeach
# pre_candidate_id video_url Acciones
{{ $i + 1 }} {{ $row['pre_candidate_id'] }} {{ $row['video_url'] }} @if($videoId)
@csrf
@endif
{{--
Volver
--}} @endif
@endsection