@inject( 'ordersService', 'App\Services\OrdersService' ) @extends( 'layout.base' ) @section( 'layout.base.body' )
@if ( empty( ns()->option->get( 'ns_invoice_receipt_logo' ) ) )

{{ ns()->option->get( 'ns_store_name' ) }}

@else {{ ns()->option->get( 'ns_store_name' ) }} @endif
{{ __( 'Report On' ) }} {{ ns()->date->getNowFormatted() }}
{{ __( 'Sales Person' ) }} {{ $user->first_name . ' ' . $user->last_name }} ({{ $user->username }})

{{ __( 'General Details' ) }}


{{ __( 'Terminal' ) }} {{ $register->name }}
{{ __( 'Opened On' ) }} {{ $openedOn }}
{{ __( 'Closed On' ) }} {{ $closedOn }}
{{ __( 'Session Duration' ) }} {{ $sessionDuration }}

{{ __( 'Sales Overview' ) }}


{{ __( 'Opening Balance' ) }} {{ $openingBalance }}
{{ __( 'Closing Balance' ) }} {{ $closingBalance }}
{{ __( 'Total Gross Sales' ) }} {{ $totalGrossSales }}
{{ __( 'Total Discounts' ) }} {{ $totalDiscounts }}
{{ __( 'Total Shipping' ) }} {{ $totalShippings }}
{{ __( 'Total Taxes' ) }} {{ $totalTaxes }}
{{ __( 'Total' ) }} {{ $totalSales }}
@foreach( $categories as $category ) @endforeach
{{ __( 'Categories Wise Sales' ) }}
{{ $category[ 'name' ] }} {{ $category[ 'quantity' ] }}
{{ __( 'Total' ) }} {{ collect( $categories )->sum( 'quantity' ) }}
@foreach( $products as $product ) @endforeach
{{ __( 'Products Overview' ) }}
{{ $product[ 'name' ] }} ({{ $product[ 'quantity' ] }}) {{ $product[ 'total_price' ] }}
{{ __( 'Total' ) }} {{ collect( $categories )->sum( 'total_price' ) }}
@includeWhen( request()->query( 'autoprint' ) === 'true', '/pages/dashboard/orders/templates/_autoprint' ) @endsection