@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) @endforeach
# pre_candidate_id video_url Acciones
{{ $i + 1 }} {{ $row['pre_candidate_id'] }} {{ $row['video_url'] }} @php // Extrae el código del reel desde la URL como "DETItRNR_qm" preg_match('/reel\/([^\/\?]+)/', $row['video_url'], $matches); $videoCode = $matches[1] ?? null; @endphp @if($videoCode)
@csrf
@else URL inválida @endif
@endif
@endsection