@extends('adminlte::page') @section('title', 'Clientes') @section('content_header')

Clientes

@stop @section('content') @if(Session::has('success')) @php $data = Session::get('success'); @endphp @if (is_array($data)) @foreach ($data as $msg) @endforeach @else @endif @endif @if(Session::has('error')) @php $data = Session::get('error'); @endphp @if (is_array($data)) @foreach ($data as $msg) @endforeach @else @endif @endif

Filtros
@if(count($clientes) == 0) @endif @foreach($clientes as $cliente) @endforeach
Código Razão Social/Nome Fantasia/Apelido CNPJ/CPF Ação
Nenhum registro Nenhum registro Nenhum registro Nenhum registro Nenhum registro
{{$cliente->codigo}} {{$cliente->razao_social_nome}} {{$cliente->fantasia_apelido}} {{$cliente->cnpj_cpf}} @if($cliente->codigo != 1) @endif
{{ $clientes->onEachSide(4)->links() }}
@if(isset($cliente))
@method('delete') @csrf
@endif @stop @section('css') @stop @section('js') @stop