@extends('admin.layouts.master') @section('content')
{{ trans('app.total') }}: {{ get_formated_currency($sales_total, 2, config('system_settings.currency.id')) }} {{ $orders_count . ' ' . trans('app.orders') }}
{{ trans('app.sales_total') }} | {{ get_formated_currency($sales_total, 2, config('system_settings.currency.id')) }} |
{{ trans('app.discounts') }} | -{{ get_formated_currency($discount_total, 2, config('system_settings.currency.id')) }} |
{{ trans('app.refunds') }} | -{{ get_formated_currency($latest_refund_total, 2, config('system_settings.currency.id')) }} |
{{ trans('app.net_sales') }} | {{ get_formated_currency($sales_total - ($discount_total + $latest_refund_total), 2, config('system_settings.currency.id')) }} |
{{ trans('app.listing') }} | {{ trans('app.attributes') }} | {{ trans('app.units_sold') }} | {{ trans('app.gross_sales') }} | ||
---|---|---|---|---|---|
{{ trans('app.sku') . ': ' }} @can('view', $inventory) {{ $inventory->sku }} @else {{ $inventory->sku }} @endcan{{ $inventory->name }} |
{{ implode(' | ', array_column($inventory->attributeValues->toArray(), 'value')) }} | {{ $inventory->sold_qtt }} | {{ get_formated_currency($inventory->gross_sales, 2, config('system_settings.currency.id')) }} |
{{ trans('app.name') }} | {{ trans('app.revenue') }} | ||
---|---|---|---|
@if ($customer->image) @else @endif | @can('view', $customer) {{ $customer->getName() }} @else {{ $customer->getName() }} @endcan | {{ $customer->orders_count }} | {{ get_formated_currency(round($customer->orders->sum('total')), 2, config('system_settings.currency.id')) }} |
{{ trans('app.no_data_found') }} |
{{ trans('app.name') }} | {{ trans('app.revenue') }} | ||
---|---|---|---|
@if ($customer->image) @else @endif | @can('view', $customer) {{ $customer->getName() }} @else {{ $customer->getName() }} @endcan | {{ $customer->orders_count }} | {{ get_formated_currency(round($customer->orders->sum('total')), 2, config('system_settings.currency.id')) }} |
{{ trans('app.no_data_found') }} |
{{ trans('app.name') }} | {{ trans('app.items') }} | {{ trans('app.status') }} |
---|---|---|
{{ $category->name }} | {{ $category->listings_count }} | {{ $category->active ? trans('app.active') : trans('app.inactive') }} |
{{ trans('app.name') }} | {{ trans('app.items') }} | {{ trans('app.status') }} | |
---|---|---|---|
{{ $supplier->name }} | {{ $supplier->inventories_count }} | {{ $supplier->active ? trans('app.active') : trans('app.inactive') }} |