@extends('warehouse.layouts.container') @section('content')
{{__('dashboard.today_orders_total')}}
{{!empty($today_orders_total) ? $today_orders_total : 0}}
{{__('dashboard.week_orders_total')}}
{{!empty($week_orders_total) ? $week_orders_total : 0}}
{{__('dashboard.month_orders_total')}}
{{!empty($month_orders_total) ? $month_orders_total : 0}}
{{__('dashboard.year_orders_total')}}
{{!empty($year_orders_total) ? $year_orders_total : 0}}
{{__('dashboard.today_orders_count')}}
{{!empty($today_orders_count) ? $today_orders_count : 0}}
{{__('dashboard.week_orders_count')}}
{{!empty($week_orders_count) ? $week_orders_count : 0}}
{{__('dashboard.month_orders_count')}}
{{!empty($month_orders_count) ? $month_orders_count : 0}}
{{__('dashboard.year_orders_count')}}
{{!empty($year_orders_count) ? $year_orders_count : 0}}
@endsection @section('inner_js') @endsection