@extends('layout.master') @section('orders', 'active') @section('content')
@include('user.templates.user-sidebar')

Orders

Order Dashboard is a quick overview of all current orders.

@forelse ($orders as $item) @empty @endforelse
COURSES INVOICE DATE PAYMENT MODE Fee (INR)
{{$item->course_sub_category_item}} {{$item->order_id}} {{$item->date}} @if ($item->payment_mode != null) {{$item->payment_mode}} @endif {{$item->fee}}
@endsection