@extends('layouts.app')
@section('title', 'Contactos')
@section('content')
| Ordem | Nome | Cargo | Departamento | Email | Telefone | Estado | Ações |
@forelse ($contacts as $c)
| {{ $c->sort_order }} |
{{ $c->name }} |
{{ $c->role ?: '—' }} |
{{ $c->department ?: '—' }} |
{{ $c->email ?: '—' }} |
{{ $c->phone ?: '—' }} |
{{ $c->active ? 'Ativo' : 'Inativo' }} |
|
@empty
| Ainda sem contactos. |
@endforelse
@endsection