@extends('layouts.app')
@section('title','Clientes')
@section('content')
Clientes ({{ $usage['clients'] }}{{ $status['plan']?->max_clients ? '/'.$status['plan']->max_clients : '' }})
@php $blocked = $status['plan']?->max_clients && $usage['clients'] >= $status['plan']->max_clients; @endphp
@if($blocked)
@else
+ Novo cliente
@endif
| Nome | Telefone | E-mail | Documento | Ações |
@forelse($clients as $c)
| {{ $c->name }} |
{{ $c->phone }} |
{{ $c->email ?? '-' }} |
{{ $c->document ?? '-' }} |
Editar
|
@empty
| Nenhum cliente. Cadastre o primeiro! |
@endforelse
{{ $clients->links() }}
@endsection