@foreach($gasto as $cliente) @endforeach
CÓDIGO NOMBRE GRUPO TELEFONO 1 TELEFONO 2 CIUDAD DIRECCIÓN CORREO CÉDULA NUMERO DE CUENTA INSTITUCION FINANCIERA TIPO DE CUENTA NOMBRE DEPENDIENTE EXCLUIDO
{{ $cliente->CardCode ?? '-' }} {{ $cliente->CardName ?? '' }} {{ $cliente->GroupCode ?? '-' }} {{ $cliente->Phone1 ?? '-' }} {{ $cliente->Phone2 ?? '-' }} {{ $cliente->City ?? '-' }} {{ $cliente->Address ?? '-' }} {{ $cliente->MailAddress ?? '-' }} {{ optional($cliente->dataExtra)->cedula ?? '-' }} {{ optional($cliente->dataExtra)->numero_cuenta ?? '-' }} {{ optional(optional($cliente->dataExtra)->banco)->name ?? '-' }} {{ optional($cliente->dataExtra)->tipo_cuenta ?? '-' }} {{ optional($cliente->dataExtra)->nombre_dependiente ?? '-' }} {{ ((int) ($cliente->is_excluded ?? 0) === 1) ? 'SI' : 'NO' }}