@extends('layouts.app') @section('content')
Record exchange rate differences (Forex Gain/Loss).
| Date | Currency | Exchange Rate | Gain / Loss | Journal | |
|---|---|---|---|---|---|
| {{ date('d M Y', strtotime($adjustment->adjustment_date)) }} | {{ $adjustment->currency }} | 1 {{ $adjustment->currency }} = {{ number_format($adjustment->exchange_rate, 4) }} | @if($adjustment->gain_loss_amount >= 0) ${{ number_format($adjustment->gain_loss_amount, 2) }} @else -${{ number_format(abs($adjustment->gain_loss_amount), 2) }} @endif | @if($adjustment->journal_id) View Journal @endif | |
No currency adjustments yet. |
|||||