@extends('layouts.dashboardnew') @section('content')
| # | Cantidad Puntos | Total a Recibir | Estatus | Fecha |
|---|---|---|---|---|
| {{ $canje->id }} | {{ $canje->cantidad }} | @if ($moneda->mostrar_a_d) {{$moneda->simbolo}} {{ $canje->total}} @else {{ $canje->total}} {{$moneda->simbolo}} @endif | @if($canje->status == 0) En Espera @elseif($canje->status == 1) Aprobado @else Rechazado @endif | {{ date('d-m-Y', strtotime($canje->fecha)) }} |