@extends('adminlte::page') @section('title', 'Clientes - ' . config('app.name') ) @section('content_header')

Clientes

@stop @section('content')
@include('layouts.errors-and-messages') @if($customers)

Clientes

{{-- @include('layouts.search', ['route' => route('admin.clientes.index')]) --}} @foreach ($customers as $customer) @endforeach
ID Nome/Razão Social CPF/CNPJ Email Status Ação
{{ $customer['id'] }} {{ $customer['name'] }} {{ $customer['cpf_cnpj'] }} {{ $customer['email'] }} @include('layouts.status', ['status' => $customer['status']])
{{ csrf_field() }}
Ver Editar {{-- --}}
{{-- {{ $customers->links() }} --}}
@endif
@endsection @section('js') @endsection