@extends('layouts.app-general') @section('content')

CLIENTES

@yield('content')
@if(session('flash_message'))
Enhorabuena!, {{ session('flash_message') }}
@endif
LISTADO DE CLIENTES {{ $customers->total() }}
@foreach($customers as $customer) @endforeach
NOMBRE COMPLETO CORREO ELECTRONICO TIPO CREACIÓN
{{ $customer->name_complete }} {{ $customer->email }} {{ $customer->type }} {{ $customer->created_at }}
@if(count($customers)==0)
No hay registros
@endif
@include('admin.common.pagination.default', ['paginator' => $customers])
@endsection