@extends('layouts.master') @section('main-content') @section('page-css') @endsection
@if (auth()->user()->can('dashboard'))

{{ __('translate.Good_Morning') }}, {{Auth::user()->username}}!

{{ __('translate.what_happening_with_your_store') }}

{{$today_purchases}}

{{ __('translate.Today_total_Purchases') }}

{{$today_sales}}

{{ __('translate.Today_total_Sales') }}

{{ __('translate.This_Week_Sales_Purchases') }}
{{ __('translate.Top_Selling_Products') }} ({{\Carbon\Carbon::now()->format('Y')}})

{{ __('translate.Recent_Sales') }}

@foreach ($recent_sales_data as $recent_sale) @endforeach
{{ __('translate.Top_Clients') }} ({{\Carbon\Carbon::now()->format('M, Y')}})
@else

{{ __('translate.Welcome_to_your_Dashboard') }} , {{ Auth::user()->username }}

@endif @endsection @section('page-js') @endsection