@extends('layouts.admin') @section('content') @php($quickActions = [ ['label' => 'Add Product', 'text' => 'Create a quote-ready catalog item', 'href' => route('admin.products.create'), 'icon' => '+'], ['label' => 'Media Gallery', 'text' => 'Upload and reuse product visuals', 'href' => route('admin.media'), 'icon' => '◎'], ['label' => 'Site Settings', 'text' => 'Logo, footer, tour and map', 'href' => route('admin.settings'), 'icon' => '⚙'], ['label' => 'Preview Site', 'text' => 'Open the public website', 'href' => route('home2'), 'icon' => '↗', 'target' => '_blank'], ])
Operations Workspace

Vinlab Control Dashboard

Manage catalog data, media, page content and incoming inquiries from one clean workspace built for fast institutional updates.

Today’s Focus {{ $stats['New Inquiries'] ?? 0 }} new inquiries

Review fresh leads first, then update product media and category coverage.

Open inquiry queue →
@foreach($quickActions as $action) {{ $action['icon'] }} {{ $action['label'] }} {{ $action['text'] }} @endforeach
@foreach($stats as $label => $value)
{{ str_pad((string) $loop->iteration, 2, '0', STR_PAD_LEFT) }}{{ $label }}
{{ $value }}
@endforeach
Domain Overview

Catalog coverage

Manage categories
@foreach($domains as $domain)
{{ $domain->product_count }}

{{ $domain->name }}

{{ $domain->description }}

@endforeach
@endsection