{{ __('Orders') }} ( 30 {{ __('days') }} )
{{ $last30daysOrders }}
{{ __('Sales Volume') }} ( 30 {{ __('days') }} )
@money( $last30daysOrdersValue, config('settings.cashier_currency'),config('settings.do_convertion'))
@if(auth()->user()->hasRole('admin'))
{{ __('Number of restaurants') }}
{{ $countItems }} {{ __('restaurants') }}
@endif @if(auth()->user()->hasRole('owner'))
{{ __('Number of items') }}
{{ $countItems }} {{ __('items') }}
@endif
{{ __('Views') }}
{{ $allViews }} {{ __('views') }}

@if(auth()->user()->hasRole('admin')) @if(config('app.isft'))
{{ __('Delivery Fee') }} ( 30 {{ __('days') }} )
@money($last30daysDeliveryFee, config('settings.cashier_currency'),config('settings.do_convertion'))
{{ __('Static Fee') }} ( 30 {{ __('days') }} )
@money($last30daysStaticFee, config('settings.cashier_currency'),config('settings.do_convertion'))
{{ __('Dynamic Fee') }} ( 30 {{ __('days') }} )
@money($last30daysDynamicFee, config('settings.cashier_currency'),config('settings.do_convertion'))
{{ __('Total Fee') }} ( 30 {{ __('days') }} )
@money(( $last30daysTotalFee != null ? $last30daysTotalFee:0), config('settings.cashier_currency'),config('settings.do_convertion'))
@endif @endif