@extends('newBase')
@section('title', __('Order Details'))
@section('content')
@include('components.iboxTop', ['title' => "Order Information"])
@include('components.three_column_info_array', [
'dataItem' => $summaryInfo ?? []
])
@include('components.iboxBottom')
@include('components.iboxTop', ['title' => "Refund Information"])
@include('components.three_column_info_array', [
'dataItem' => $refundDetails ?? []
])
@include('components.iboxBottom')
@if(isset($newDetails))
@include('components.iboxTop', ['title' => "New Course Information"])
@include('components.three_column_info_array', [
'dataItem' => $newDetails ?? []
])
@include('components.iboxBottom')
@endif
@if(isset($originalDetails))
@include('components.iboxTop', ['title' => "Original Course Information"])
@include('components.three_column_info_array', [
'dataItem' => $originalDetails ?? []
])
@include('components.iboxBottom')
@endif
@endsection