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

Profissionais

@stop @foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg)) @endif @endforeach @section('content')
@if(count($registros) > 0)
@foreach($registros as $registro) @endforeach
Nome Conselho Profissional Ativo Ação
{{ $registro->nome }} {{ $registro->conselho_profissional }} {{ $registro->ativo == 1 ? 'Sim' : 'Não' }}
@else
Nenhum registro encontrado.
@endif
@stop