@extends('elementos.navegacion') @section('pagina', 'Bandeja de Entrada') @section('content')
| ID | CI/RIF | Nombre y Apellido | Monto Sueldo/Ahorros | Monto del Credito | Costo del Credito | Total a Pagar | Estatus | Fecha Solicitud | Cambiar Estatus |
|---|---|---|---|---|---|---|---|---|---|
| {{ $m->id }} | {{ $m->rif_ci }} | {{$m->nombre}} {{$m->apellido}} | Bs. {{ number_format($m->monto_sueldo_ahorro,2, ',', '.') }} | Bs. {{ number_format($m->total_credito,2, ',', '.') }} | Bs. {{ number_format($m->costo_credito,2, ',', '.') }} | Bs. {{ number_format($m->total_credito+$m->costo_credito,2, ',', '.') }} | {{ $mes_le }} | {{ $m->fecha }} | {!!Form::open(['url' => 'edit_solicitud','method'=>'POST'])!!} {!!Form::token()!!} {!!Form::hidden('id', $m->id)!!} {!!Form::close()!!} |