@inject( 'ordersService', 'App\Services\OrdersService' ) @extends( 'layout.base' ) @section( 'layout.base.body' )
{{ __( 'Report On' ) }} | {{ ns()->date->getNowFormatted() }} | |
{{ __( 'Sales Person' ) }} | {{ $user->first_name . ' ' . $user->last_name }} ({{ $user->username }}) |
{{ __( 'Terminal' ) }} | {{ $register->name }} | |
{{ __( 'Opened On' ) }} | {{ $openedOn }} | |
{{ __( 'Closed On' ) }} | {{ $closedOn }} | |
{{ __( 'Session Duration' ) }} | {{ $sessionDuration }} |
{{ __( 'Opening Balance' ) }} | {{ $openingBalance }} | |
{{ __( 'Closing Balance' ) }} | {{ $closingBalance }} | |
{{ __( 'Total Gross Sales' ) }} | {{ $totalGrossSales }} | |
{{ __( 'Total Discounts' ) }} | {{ $totalDiscounts }} | |
{{ __( 'Total Shipping' ) }} | {{ $totalShippings }} | |
{{ __( 'Total Taxes' ) }} | {{ $totalTaxes }} | |
{{ __( 'Total' ) }} | {{ $totalSales }} |
{{ __( 'Categories Wise Sales' ) }} | ||
{{ $category[ 'name' ] }} | {{ $category[ 'quantity' ] }} | |
{{ __( 'Total' ) }} | {{ collect( $categories )->sum( 'quantity' ) }} |
{{ __( 'Products Overview' ) }} | ||
{{ $product[ 'name' ] }} ({{ $product[ 'quantity' ] }}) | {{ $product[ 'total_price' ] }} | |
{{ __( 'Total' ) }} | {{ collect( $categories )->sum( 'total_price' ) }} |