{{-- resources/views/dashboard/stocks/payment.blade.php --}} @extends('layouts.user') @section('title', 'Investment Payment') @section('content')

Investment Payment

Back to Stocks
{{-- Order Summary --}}
Order Summary
Review your investment details
{{ ucfirst($order->payment_status) }}
{{ $order->symbol }}
{{ $order->symbol }}
Selected stock item
@foreach([ ['Order ID', '#'.$order->id], ['Symbol', $order->symbol], ['Quantity', number_format((float)$order->quantity,6)], ['Price Snapshot', '$'.number_format((float)$order->price_snapshot,2)], ['Order Status', ucfirst(str_replace('_',' ',$order->order_status))], ] as $row)
{{ $row[0] }} {{ $row[1] }}
@endforeach
Exact Amount Required ${{ number_format((float)$order->order_value,2) }}
{{-- Payment method selector --}}
Select Payment Method
Choose a deposit method to fund this order
@csrf
@error('quantity')
{{ $message }}
@enderror Total amount is auto-calculated by live price; no manual payment amount needed.
@error('payment_method')
{{ $message }}
@enderror
Payment is deposit-only. Selecting a method creates a deposit payment request linked to this order.
Cancel
@endsection {{-- ═══════════════════════════════════════════════════════ resources/views/dashboard/stocks/future.blade.php ═══════════════════════════════════════════════════════ --}}