@extends('layouts.app') @section('title', 'Monedas y Tasas de Cambio') @section('content')
| Desde | Hacia | Tipo | Tasa Principal | Tasa Real | Tasa Legal | Fecha Efectiva | Estado | Acciones |
|---|---|---|---|---|---|---|---|---|
| {{ $rate->from_currency }} | {{ $rate->to_currency }} | @if($rate->calculation_type === 'direct') Directa @else Dual @endif | @if($rate->calculation_type === 'direct' && $rate->rate) {{ number_format($rate->rate, 4) }} @else N/A @endif | @if($rate->rate_real) {{ number_format($rate->rate_real, 4) }} @else N/A @endif | @if($rate->rate_legal) {{ number_format($rate->rate_legal, 4) }} @else N/A @endif | {{ $rate->effective_date->format('d/m/Y') }} | @if($rate->is_active) Activa @else Inactiva @endif |
|
Comienza agregando tu primera tasa de cambio.