@extends('layouts.app') @section('title', 'Widgets Component') @section('content')
{{-- Page Header --}}

Widgets

Kumpulan blok UI untuk menampilkan data statistik dan ringkasan informasi secara cepat.

{{-- 1. Mini Stats Widgets --}}

Mini Statistics

{{-- Stat 1 --}}

Total Profit

$12,840

{{-- Stat 2 --}}

New Orders

572

{{-- Stat 3 --}}

Active Users

1,204

{{-- Stat 4 --}}

Avg. Rating

4.9

{{-- 2. Interactive & List Widgets --}}
{{-- Progress Widget --}}
@php $projects = [ ['name' => 'UI Design System', 'progress' => 85, 'color' => 'bg-indigo-600'], ['name' => 'API Integration', 'progress' => 42, 'color' => 'bg-rose-500'], ['name' => 'Database Setup', 'progress' => 100, 'color' => 'bg-emerald-500'], ]; @endphp @foreach($projects as $project)
{{ $project['name'] }} {{ $project['progress'] }}%
@endforeach
{{-- Activity Widget --}}

New product added

2 minutes ago

Payout successful

1 hour ago

New review received

Yesterday

{{-- Upgrade Card (Call to Action) --}}

Buka Fitur
Premium Sekarang

Dapatkan akses ke analytics yang lebih dalam dan laporan custom untuk bisnis Anda.

Upgrade Pro
{{-- 3. Notification & Status Widgets --}}
Main Server
Operational
PostgreSQL DB
High Load
SSL Certificate
Valid

Google Drive

85GB of 100GB used

85%
Manage Upgrade
@endsection