@extends('backend.admin.master') @section('content')
View Order Details

Name : {{$user_info->name}} Email : {{$user_info->email}} Phone : {{$user_info->phone}} Address: {{$user_info->address}} Bio: {{$user_info->bio}} Gender: {{$user_info->gender}}
Total Amount : {{$payment_info->total_amount}} Payment Type : {{$payment_info->payment_type}} Invoice Number : {{$payment_info->invoice_no}} Order Date: {{ $payment_info->created_at->format('F d, Y') }} Trx Id: {{$payment_info->transaction_id}}
@foreach($payment_info['order'] as $item) @endforeach
Image Course Name Category Instructor Price
{{$item->course->course_name}} {{$item->course->category->name}} {{$item->instructor->name}} ${{$item->price}}
@endsection