@extends('layouts.seller') @section('title', 'Analytics') @section('content')
Products
{{ $seller->products->count() }}
Inquiries
{{ $seller->inquiries->count() }}
Quotes
{{ $seller->quotes->count() }}
@php $settings = $seller->getOrCreateMicrositeSettings(); @endphp
Total Views
{{ number_format($settings->page_views ?? 0) }}
Performance Overview
Key Metrics
Active Products
{{ $seller->products->where('is_approved', true)->count() }}
Pending Products
{{ $seller->products->where('is_approved', false)->count() }}
Accepted Quotes
{{ $seller->quotes->where('status', 'accepted')->count() }}
Testimonials
{{ $seller->testimonials->count() }}
@endsection @push('scripts') @endpush