@extends('layouts.app') @section('title') {{ __('messages.Orders') }} @endsection @section('content')
@include('inc.breadcrumb', [ 'breadcrumb_items' => [ __('messages.Home') => route('home'), __('messages.SKIP profits') => 'active', ], ])

{{ round($last_7_days_earnings , 2 ) }} {{ __("messages.AED") }}

{{ __("messages.In the last 7 days") }}

{{ __("messages.Duration") }} {{ $last_7_days_start_date }} - {{ date("Y-m-d") }}

{{ round($current_month_earnings , 2 ) }} {{ __("messages.AED") }}

{{ __("messages.In the current month") }}

{{ __("messages.Duration") }} {{ $start_of_month }} - {{ $end_of_month }}

{{ round($current_year_earnings , 2 ) }} {{ __("messages.AED") }}

{{ __("messages.In the current year") }}

{{ __("messages.Duration") }} {{ $start_of_year }} - {{ $end_of_year }}

{{ __("messages.SKIP profits") }}

{{ __("messages.The displayed profits are the app profits for the period from :start_date to :end_date" , ['end_date'=>$all_profit['min_data'], 'start_date'=>$all_profit['max_date']]) }}

{{ round($all_profit['profits'] , 2) }} {{ __("messages.AED") }}

view sales
@endsection