@extends('layout.app') @section('title') Manage Fx Purchase @endsection @section('pagetitle') Manage Fx Purchase @endsection @section('content')
@can('fx purchase') Create Purchase @endcan
@include('includes.success')
@foreach ($purchases as $purch) @endforeach
Sn Purchased Rate Naira Amount Foreign Amount Currency Reference Payment Mode Trnx Date
{{$i+1}} {{number_format($purch->purchase_exchange_rate,2)}} {{number_format($purch->naria_amount,2)}} {{number_format($purch->foreign_amount,2)}} {{$purch->exchangerate->currency}} {{$purch->fx_reference}} {{$purch->payment_mode}} {{date("d-m-Y",strtotime($purch->tranx_date))}}
@endsection @section('scripts') @endsection