@extends('admin.layout')
@section('title',__('Home'))
@section('breadcrump')
{{ __('Dashboard') }}
- {{__('Home')}}
@endsection
@section('css')
@endsection
@section('content')
@can('view_order')
{{$total_orders}}
{{__('Total Orders')}}
{{formated_price($total_sales)}}
{{__('Total sales')}}
{{formated_price($total_commissions)}}
{{__('Total Commission')}}
{{formated_price($pending_profit)}}
{{__('Pending profits')}}
{{formated_price($confirmed_profit)}}
{{__('Confirmed profits')}}
{{formated_price($paid_profit)}}
{{__('Paid profits')}}
{{formated_price($remaining_profit)}}
{{__('Remaining profits')}}
{{$pending_orders}}
{{__('pending orders')}}
{{$hold_orders}}
{{__('Hold orders')}}
{{$confirmed_orders}}
{{__('Confirmed orders')}}
{{$sending_orders}}
{{__('Sending')}}
{{$delivered_orders}}
{{__('Delivered orders')}}
{{--
{{$commission_paid_orders}}
{{__('Commission paid orders')}}
--}}
{{$the_price_being_received_orders}}
{{__('The price is being received')}}
{{$canceled_orders}}
{{__('Canceled orders')}}
@endcan
@endsection
@section('scripts')
@endsection