@extends('layouts.admin') @section('content')
{{-- 🔹 Welcome Banner --}}

{{ __('Frontend Control Center') }}

Welcome back, {{ Auth::guard('admin')->user()->name }}. Manage your website sections below.

{{-- 🔹 Cards Section --}}
{{-- About Section --}}
{{ __('About Section') }}

{{ __('Edit') }}

{{ __('Update Content') }}
{{-- Why Choose Us --}}
{{ __('Why Choose Us') }}

@php $why_count = \App\Models\WhyChooseUs::class; @endphp {{ class_exists($why_count) ? $why_count::count() : '0' }}

{{ __('Manage Features') }}
{{-- Pricing Plans --}}
{{ __('Pricing Plans') }}

@php $pricing_count = \App\Models\Pricing::class; @endphp {{ class_exists($pricing_count) ? $pricing_count::count() : (class_exists(\App\Models\Price::class) ? \App\Models\Price::count() : '0') }}

{{ __('Manage Plans') }}
{{-- Brand Logos --}}
{{ __('Brand Logos') }}

@php $brand_count = \App\Models\Brand::class; @endphp {{ class_exists($brand_count) ? $brand_count::count() : '0' }}

{{ __('Manage Brands') }}
{{-- Social Links --}}
{{ __('Social Settings') }}

@php $social_count = \App\Models\Sociallink::class; @endphp {{ class_exists($social_count) ? $social_count::count() : '0' }}

{{ __('Update Links') }}
{{-- Testimonials --}}
{{ __('Testimonials') }}

@php $testi_count = \App\Models\Testimonial::class; @endphp {{ class_exists($testi_count) ? $testi_count::count() : '0' }}

{{ __('Manage Reviews') }}
{{-- 🔹 Quick Action Table --}}
@endsection