@extends('adminlte::page') @section('title', 'Clientes') @section('content_header')
Clientes
Novo Cliente
@stop @section('content') @if(Session::has('success')) @php $data = Session::get('success'); @endphp @if (is_array($data)) @foreach ($data as $msg)
{{ $msg }}
@endforeach @else
{{ $data }}
@endif @endif @if(Session::has('error')) @php $data = Session::get('error'); @endphp @if (is_array($data)) @foreach ($data as $msg)
{{ $msg }}
@endforeach @else
{{ $data }}
@endif @endif
Filtros
mostrar
Mostrar Inativos
Aplicar Filtro
@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}}
Ver
@if($cliente->codigo != 1)
Excluir
@endif
{{ $clientes->onEachSide(4)->links() }}
@if(isset($cliente))
@method('delete') @csrf
Deletar Registro
×
Deseja Realmente Excluir este Registro?
@endif @stop @section('css')
@stop @section('js') @stop