@extends('frontend.instructor-dashboard.layouts.master') @section('dashboard-contents')
{{ __('No') }} | {{ __('Course') }} | {{ __('Buyer') }} | {{ __('Main Price') }} | {{ __('Your Commission') }} | |||||
---|---|---|---|---|---|---|---|---|---|
{{ ++$index }} | {{ $order->course->title}} | {{ $order->order->user->name}} | {{ currency($order->price ) }} | @php $commissionAmount = $order->price * ($order->commission_rate / 100); $amountAfterCommission = $order->price - $commissionAmount; @endphp{{ currency($amountAfterCommission) }} | |||||
{{ __('No orders found!') }} |