@extends('layouts.admin.master') @section('content')
@include('components.search')
@if (!empty($type) && $type === 'advogados') @endif @if (!empty($type) && ($type === 'pendentes' || $type === 'todos')) @endif @php($count = 1) @foreach($clientes as $cliente) @if (!empty($type) && $type === 'advogados') @endif @if (!empty($type) && ($type === 'pendentes' || $type === 'todos')) @endif @endforeach
# Nome E-mail Adimplente? PerfilSituação Ações
{{ $count++ }} {{ $cliente->nome }} {{ $cliente->email }} {{ $cliente->adimplente ? 'Sim' : 'Não' }} {{ $cliente->tipo_pessoa->nome }} {{ $cliente->ativo ? 'Ativo' : 'Aguardando validação' }} @if (!$cliente->ativo) @endif
{!! $clientes->appends(\Request::except('page'))->render('vendor.pagination.bootstrap-4') !!}
@endsection