@extends('layouts.app') @section('title', 'Reclutadores') @section('pagename', 'Reclutadores') @section('content')
+ Registrar nuevo
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('status')) @endif
@foreach ($headhunters as $h) @endforeach
Nombres DNI Correo Teléfono Social Fecha Acciones
{{ $h->name }} {{ $h->lastname}} {{ $h->dni }} {{ $h->email }} {{ $h->phone }} @if ($h->social_linkedin) @endif @if ($h->social_facebook) @endif @if ($h->social_instagram) @endif @if ($h->social_twitter) @endif {{$h->created_at}}
@csrf @method('DELETE')
@endsection