@extends('salary::reports.base') @section('content')

Reporte para ContadurĂ­a Municipal

PerĂ­odo {{ $data['period']->month }}/{{ $data['period']->year }}

@php $total = 0; @endphp @foreach ($reporte['contratos'] as $contrato => $importe) @endforeach
Tipo Importe
{{ strtoupper($contrato) }} $ {{ number_format($importe, 2, ',', '.') }}
Asignaciones: $ {{ number_format($reporte['asignaciones'], 2, ',', '.') }}
Aportes patronales: $ {{ number_format($reporte['patronal'], 2, ',', '.') }}
Total: $ {{ number_format($reporte['total'], 2, ',', '.') }}

{{ $data['organization_name']}}, {{ now()->isoFormat('LL') }}

@endsection