@extends('webview.master') @section('maincontent') @section('title') {{ env('APP_NAME') }}-User Dashboard @endsection
@if(Auth::guard('web')->user()->profile) @else @endif

{{ Auth::guard('web')->user()->name }}

{{ Auth::guard('web')->user()->email }}

{{ Cart::count() }} Product

Cart

{{ App\Models\Order::where('user_id', Auth::user()->id)->get()->count() }} Product

Ordered

@endsection