@extends('layouts.admin.theme') @section('title', env('APP_NAME') . ' :: Buscar Currículos') @section('content')
Lista de Currículos
@include('errors.messageFlash')
@include('components.tables._thead', [ 'thead' => ['Nome', 'Sexo', 'Bairro', 'E-mail', 'Área de Interesse', 'Status', 'Data de Cadastro', 'Ultima Atualização', 'Ações'] ]) @forelse($curriculos as $curriculo) @empty @endforelse
{{ $curriculo->name ?? 'Não informado' }} {{ $curriculo->gender_id->name ?? 'Não informado' }} {{ $curriculo->neighbourhood->name ?? 'Não informado' }} {{ $curriculo->email ?? 'Não informado' }} {{ optional($curriculo->occupation)->name ?? 'Não informado' }} {{ $curriculo->ultimo_status ?? 'Sem status' }} {{ date('d/m/Y', strtotime($curriculo['created_at'])) }} {{ date('d/m/Y', strtotime($curriculo['updated_at'])) }}
@php $searchParams = request()->except(['page']); $returnUrl = route('admin.curriculos.index', $searchParams); @endphp
* Nenhum currículo encontrado!
{{ $curriculos->links() }}
@endsection