{{ DB::table('empresas')->count() == 0 ? 'SISCOM ' : DB::table('empresas')->first()->razon_social }}
{{ DB::table('empresas')->count() == 0 ? '- ' : DB::table('empresas')->first()->direccion_fiscal }}
Central telefónica: {{ DB::table('empresas')->count() == 0 ? '-' : DB::table('empresas')->first()->telefono }}
Email: {{ DB::table('empresas')->count() == 0 ? '-' : DB::table('empresas')->first()->correo }}
RUC {{ DB::table('empresas')->count() == 0 ? '- ' : DB::table('empresas')->first()->ruc }}
CUENTA
C - {{ $cuenta->id}}
| FECHA DOCUMENTO | : | {{ getFechaFormato($cuenta->documento->fecha_documento ,'d/m/Y') }} |
| DOCUMENTO | : | {{ $cuenta->documento->serie . ' - ' . $cuenta->documento->correlativo }} |
| CLIENTE | : | {{ $cliente->nombre }} |
| {{ $cliente->tipo_documento }} | : | {{ $cliente->documento }} |
| DIRECCIÓN | : | {{ $cliente->direccion }} |
| FECHA | MONTO | SALDO |
|---|---|---|
| {{ getFechaFormato($item->fecha ,'d/m/Y') }} | {{ $item->monto }} | {{ $item->saldo }} |
|
|