@extends('panel.app')
@section('content')
Vista previa del archivo importado
@if($rows->isEmpty())
No se encontraron filas en el archivo.
@else
# |
pre_candidate_id |
video_url |
Acciones |
@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
{{ $i + 1 }} |
{{ $row['pre_candidate_id'] }} |
{{ $row['video_url'] }} |
@if($videoId)
@endif
|
@endforeach
{{--
--}}
@endif
@endsection