|
@if(Auth::user()->role == "admin")
{{$order->user['fname'] }} {{$order->user['lname']}}
@else
@if($gsetting->hide_identity == 0)
{{$order->user['fname'] }} {{$order->user['lname']}}
@else
Hidden
@endif
@endif
|
@if($order->course_id != NULL)
{{ $order->courses['title'] }}
@else
{{ $order->bundle['title'] }}
@endif
|
{{$order->transaction_id}} |
{{$order->payment_method}} |
@if($order->coupon_discount == !NULL)
{{ $order->total_amount - $order->coupon_discount }} |
@else
{{ $order->total_amount }} |
@endif
|
{{ __('adminstaticword.View') }}
|
|
@endforeach