{{ __('Attract your customers with the best products.') }}
{!! __('Create a new product here', ['url' => route('marketplace.vendor.products.create')]) !!}
{!! __('View your store here', ['url' => $user->store->url]) !!}
{{ format_price($data['revenue']['amount']) }} {{ __('Revenue') }}
{{ format_price($data['revenue']['withdrawal']) }} {{ __('Withdrawals') }}
{{ format_price($data['revenue']['fee']) }} {{ __('Fees') }}
{{ __('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!') }} |
{{ __('ID') }} | {{ __('Name') }} | {{ __('Amount') }} | {{ __('Status') }} | {{ __('Created at') }} | |
---|---|---|---|---|---|
{{ $product->id }} | {{ $product->original_product->name }} | {!! $product->price_in_table !!} | {!! $product->status->toHtml() !!} | {{ $product->created_at->format('M d, Y') }} | |
{{ __('No products!') }} |