@extends('application.billdesk.layout')
@section('title', 'Payment Result')
@section('content')
Payment {{ ucfirst($status) }}
{{ $status }}
@if (!empty($message))
{{ $message }}
@endif
@if (!empty($data['orderid']))
Order
ID{{ $data['orderid'] }}
@endif
@if (!empty($data['transactionid']))
Transaction ID{{ $data['transactionid'] }}
@endif
@if (!empty($data['amount']))
Amount₹{{ $data['amount'] }}
@endif
@if (!empty($data['payment_method_type']))
Method{{ $data['payment_method_type'] }}
@endif
@if (!empty($data['transaction_date']))
Date{{ $data['transaction_date'] }}
@endif
Redirecting in 5 seconds...
{{--
{{ json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) }} --}}
Go to next step
@endsection