@extends('../site/layouts.user_panel.app') @section('page_title', __('Dashboard')) @section('content')

, {{ auth()->user()->name }}

{{ __("Here is what's happening with your profile today..") }}

{{ __('Total Order') }}
{{ auth()->user()->totalOrder() }}
{{ __('Your Wishlist') }}
{{ auth()->user()->totalWishlist() }}
{{ __('Your Reviews') }}
{{ auth()->user()->totalReview() }}

{{ __('Product in cart') }}

{{ Cart::cartCollection()->count() }}
@if (count($orders) > 0)

{{ __('Last Orders') }}

@endif
@if (count($orders) > 0) @foreach ($orders as $order) @endforeach @endif
@endsection @section('js') @endsection