@extends('layouts.admin.theme') @section('title', env('APP_NAME') . ' :: ' . __("Lista de Pontos Focais")) @section('content') @include("errors.messageFlash")
| {{ __("Nome") }} | {{ __("Instituição") }} | {{ __("Matrícula") }} | {{ __("Telefone/Ramal") }} | {{ __("E-mail") }} | {{ __("Ações") }} |
|---|---|---|---|---|---|
| {{ $pontoFocal->nome }} | {{ $pontoFocal->instituicao->name ?? '-' }}@if($pontoFocal->instituicao && $pontoFocal->instituicao->abbreviation) ({{ $pontoFocal->instituicao->abbreviation }})@endif | {{ $pontoFocal->matricula }} | {{ $pontoFocal->telefone_ramal ?? '-' }} | {{ $pontoFocal->email ?? '-' }} | |
| {{ __("* Nenhum registro encontrado!") }} | |||||