@extends('layouts.app')
@section('content')
{{ __('Subscribers') }}
{{ __('Domain Request') }}
{{ __('Total Earnings') }}
{{ __('Expired Subscriptions') }}
{{ __('Total Orders') }}
Total Sales Of Earnings - {{ date('Y') }}
Total Sales - {{ date('Y') }}
{{ __('Earnings performance') }}
![]()
{{ __('Recent Request') }}
@foreach($orders ?? [] as $key => $row)
{{ __('Order') }}
{{ __('Date') }}
{{ __('Customer') }}
{{ __('Amount') }}
{{ __('Method') }}
{{ __('Payment Status') }}
{{ __('Fulfillment') }}
{{ __('Action') }}
@endforeach
{{ $row->order_no }}
{{ $row->created_at->format('d-F-Y') }}
{{ $row->user->name }}
{{ amount_format($row->amount) }}
{{ $row->category->name ?? '' }}
@if($row->payment_status==1)
{{ __('Paid') }}
@elseif($row->payment_status == 2)
{{ __('Pending') }}
@else
{{ __('Fail') }}
@endif
@if($row->status == 1)
Approved
@elseif($row->status == 2)
{{ __('Pending') }}
@elseif($row->status == 3)
{{ __('Expired') }}
@else
{{ __('Cancelled') }}
@endif