@extends('plugins/marketplace::themes.dashboard.master') @section('content')

{{ __('Sales Reports') }}

{{ __('Earnings') }}

{{ format_price($user->balance) }}{{ __('Balance') }}

{{ format_price($user->balance) }}{{ __('Income') }}

{{ format_price($user->balance / 10) }}{{ __('Fees') }}

{{ __('Recent Orders') }}

@if (count($orders) > 0) @foreach($orders as $order) @endforeach @else @endif
{{ __('ID') }} {{ __('Date') }} {{ __('Customer') }} {{ __('Payment') }} {{ __('Status') }} {{ __('Total') }}
{{ get_order_code($order->id) }} {{ $order->created_at->format('M d, Y') }} {{ $order->user->name ?: $order->address->name }} {!! $order->payment->status->toHtml() !!} {!! $order->status->toHtml() !!} {{ format_price($order->amount) }}
{{ __('No orders!') }}

{{ __('Statistics') }}

{{ __('Orders') }}

{{ $store->orders()->count() }}

{{ __('Revenue') }}

{{ format_price($user->balance) }}

{{ __('Products') }}

{{ $store->products()->count() }}

@stop @push('footer') @endpush