@extends('layouts.user') @section('title') @lang('Exchange Money') @endsection @section('breadcrumb') @lang('Exchange Money') @endsection @section('content')
@csrf
@lang('Amount')
@lang('From Currency')
@lang('To Currency')
  • @lang('From Currency : ')
  • @lang('To Currency : ')
  • @lang('Exchange Amount : ')
  • @lang('Exchange Charge : ')
  • @lang('Will get : ')

@lang('Recent Exchanges')

@lang('See All')
@forelse ($recentExchanges as $item) @empty @endforelse
@lang('From Currency') @lang('From Amount') @lang('To Currency') @lang('To Amount') @lang('Charge') @lang('Date')
{{@$item->fromCurr->code}} {{amount($item->from_amount,$item->fromCurr->type,2)}} {{@$item->fromCurr->code}} {{@$item->toCurr->code}} {{amount($item->to_amount,$item->toCurr->type,2)}} {{@$item->toCurr->code}} {{amount($item->charge,$item->fromCurr->type,2)}} {{$item->fromCurr->code}} {{dateFormat($item->created_at)}}
@lang('No data found!')
@endsection @push('script') @endpush