@extends('website.student.layouts.master') @section('title') {{ __('home.Order History') }} @endsection @section('sub-title', __('home.Order History') ) @section('content')

{{__('home.Order History')}}

@forelse($orders as $order) @empty @endforelse
{{__('home.Order ID')}} {{__('home.Course Name')}} {{__('home.Date')}} {{__('home.Price')}} {{__('home.Status')}}
#{{$order->id}} {{$order->orderCourses->first()->course->name_ar}} {{$order->created_at}} ${{$order->total_price}} @if($order->status === 'unpaid') {{$order->status}} @elseif($order->status === 'paid') {{$order->status}} @endif
#2045
@endsection