@extends('layouts.admin.theme') @section('title', env('APP_NAME') . ' :: ' . __('Gerenciar Clientes')) @section('content')
| {{ __('Nome') }} | {{ __('CPF') }} | {{ __('Matrícula') }} | {{ __('Setor') }} | {{ __('Telefone') }} | {{ __('Ações') }} |
|---|---|---|---|---|---|
| {{ $cliente->nome }} | {{ $cliente->cpf ?? '-' }} | {{ $cliente->matricula ?? '-' }} | {{ $cliente->setor ?? '-' }} | {{ $cliente->telefone ?? '-' }} |
@if (auth()->user()->getPermissaoDetalhes('GERENCIADOR_DEMANDAS')['editar'])
@endif
@if (auth()->user()->getPermissaoDetalhes('GERENCIADOR_DEMANDAS')['excluir'])
@endif
|
|
{{ __('Nenhum cliente encontrado.') }}
|
|||||