@extends('adminlte::page') @section('content_header')

Profissionais

@stop @section('content')
@if(count($registros) > 0)
@foreach($registros as $registro) @endforeach
Nome Conselho Profissional Ativo Ação
{{ $registro->nome }} {{ $registro->conselho_profissionalExterno }} {{ $registro->ativo == 1 ? 'Sim' : 'Não' }}
@else
Nenhum registro encontrado.
@endif
@stop