@extends('adminlte::page') @section('title', 'Lista de clientes') @section('plugins.Datatables', true) @section('plugins.Sweetalert2', true) @section('content_header')
# | N° Documento | Nombres y Apellidos | Razon Social | Deuda Anterior | Estado | Opc | @foreach ($clientes as $cliente)
---|---|---|---|---|---|---|
{{ $cliente->id }} | {{ $cliente->documento }} | {{ $cliente->nombre_comercial }} | {{ $cliente->razon_social }} | {{ $cliente->deuda_anterior }} | @if ($cliente->estado) Activo @else Inactivo @endif |