@extends('layout.app') @section('title') Fx {{ucfirst($rv)}} Reversal @endsection @section('pagetitle') Fx {{ucfirst($rv)}} Reversal @endsection @section('content')
@include('includes.errors')
Reference No
@if (!empty($_GET['filter']) && $_GET['filter'] == true)
@csrf
@if ($rv=="sales") @endif
Customer{{!is_null($rfx->customer) ? $rfx->customer : "N/A"}}
Naira Amount{{number_format($rfx->naria_amount,2)}}
Foreign Amount{{number_format($rfx->foreign_amount,2)}}
Purchased Rate{{number_format($rfx->purchase_exchange_rate,2)}}
Sold Rate{{number_format($rfx->sales_exchange_rate,2)}}
Sales Margin{{number_format($rfx->sales_margin,2)}}
Beneficiary{{ucwords($rfx->beneficiary)}}
Beneficiary Bank{{ucwords($rfx->beneficiary_bank)}}
Payment Mode{{$rfx->payment_mode}}
Description

{{$rfx->description}}

Transaction Date{{date("d-m-Y",strtotime($rfx->tranx_date))}}
@if ($rfx->payment_mode == "cash" || $rfx->payment_mode == "bank") @elseif ($rfx->payment_mode == "customer") @endif
@else @if (!empty($_GET['error']) && $_GET['error'] == '1')
Reference Not Found
@else
Please Enter Slip or Reference No and click on search record button
@endif @endif
@endsection @section('scripts') @endsection