@extends('payment.layouts.master') @section('content') @if(isset($config))

{{ "Please do not refresh this page..." }}

@php($secretkey = $config->secret_key) @php($data = new \stdClass()) @php($data->merchantId = $config->merchant_id) @php($data->amount = $payment_data->payment_amount) @php($data->name = $payer->name??'') @php($data->email = $payer->email ??'') @php($data->phone = $payer->phone ??'') @php($data->hashed_string = md5($secretkey . urldecode($data->amount) ))
@endif @endsection