@extends('layouts.user') @push('css') @endpush @section('contents')
| {{__('Request From')}} | : | {{ $from->name }} |
|---|---|---|
| {{__('Request To')}} | : | {{ $to->name }} |
| {{__('Amount')}} | : | {{ showprice($data->amount,$currency) }} |
| {{__('Cost')}} | : | {{ showprice($data->cost,$currency) }} |
| {{__('Amount To Get')}} | : | {{ showprice(($data->amount - $data->cost),$currency) }} |
| {{__('Details')}} | : | {{ $data->details }} |
| {{__('Request Date')}} | : | {{ $data->created_at->diffForHumans() }} |