@extends('layouts.app')
@section('title', 'Advanced Cards UI Kit')
@section('content')
Card
Koleksi komponen kartu modular.
Analytics & Statistik
{{-- CARD 1 --}}
{{-- CARD 2 --}}
Proyek Aktif
LaravelUI Dashboard
@foreach ([1, 2, 3] as $i)

@endforeach
+5
{{-- CARD 3 --}}
{{-- Top --}}
{{-- Bottom chart (tinggi konsisten) --}}
@foreach ([40, 70, 45, 90, 65, 80, 50] as $h)
@endforeach
@php
$verticalProducts = [
[
'title' => 'Nike Air Max Red',
'price' => 'Rp 850.000',
'image' => 'https://images.unsplash.com/photo-1542291026-7eec264c27ff?q=80&w=400',
'label' => 'Flash Sale',
'left' => 12,
'progress' => '66%',
],
[
'title' => 'Adidas Ultraboost',
'price' => 'Rp 1.150.000',
'image' => 'https://images.unsplash.com/photo-1600180758890-6b94519a8ba6?q=80&w=400',
'label' => 'Hot Deal',
'left' => 8,
'progress' => '80%',
],
[
'title' => 'Puma RS-X',
'price' => 'Rp 990.000',
'image' => 'https://images.unsplash.com/photo-1519744792095-2f2205e87b6f?q=80&w=400',
'label' => 'Limited',
'left' => 5,
'progress' => '90%',
],
];
$horizontalProducts = [
[
'title' => 'Minimalist Watch v2',
'price' => 'Rp 1.250.000',
'image' =>
'https://images.unsplash.com/photo-1523275335684-37898b6baf30?q=80&w=600&auto=format&fit=crop',
'desc' => 'Jam tangan premium dengan desain minimalis, cocok untuk gaya profesional dan kasual.',
],
[
'title' => 'Leather Backpack Pro',
'price' => 'Rp 1.750.000',
'image' =>
'https://images.unsplash.com/photo-1526170375885-4d8ecf77b99f?q=80&w=600&auto=format&fit=crop',
'desc' => 'Tas kulit premium dengan kompartemen luas, cocok untuk kerja dan traveling.',
],
];
@endphp
{{-- SECTION TITLE --}}
E-Commerce Variants
{{-- ===================== --}}
{{-- VERTICAL PRODUCTS (3) --}}
{{-- ===================== --}}
@foreach ($verticalProducts as $product)
{{-- IMAGE --}}
{{-- INFO --}}
{{ $product['label'] }}
{{ $product['title'] }}
{{ $product['price'] }}
{{-- BOTTOM --}}
Tersisa {{ $product['left'] }} item
@endforeach
{{-- ======================= --}}
{{-- HORIZONTAL PRODUCTS (2) --}}
{{-- ======================= --}}
@foreach ($horizontalProducts as $product)
{{-- IMAGE --}}
{{-- CONTENT --}}
{{ $product['price'] }}
{{ $product['desc'] }}
{{-- ACTION --}}
Beli Sekarang
@endforeach
Aktivitas &
Log
@foreach ([['icon' => 'upload', 'color' => 'indigo', 'user' => 'Alex Moon', 'action' => 'mengunggah aset desain baru', 'time' => '10 mnt lalu'], ['icon' => 'message-dots', 'color' => 'emerald', 'user' => 'Sarah Cole', 'action' => 'mengomentari laporan mingguan', 'time' => '1 jam lalu'], ['icon' => 'circle-check', 'color' => 'amber', 'user' => 'System', 'action' => 'backup database berhasil', 'time' => '5 jam lalu']] as $act)
{{ $act['user'] }}
{{ $act['action'] }}
{{ $act['time'] }}
@endforeach
Pilihan Paket
(Pricing)
Gratis
Rp 0
Cocok untuk eksplorasi awal dan proyek personal.
@foreach (['1 Proyek Aktif', 'Kapasitas 500MB', 'Dukungan Komunitas'] as $f)
{{ $f }}
@endforeach
Mulai Gratis
Populer
Paket Pro
Rp 299k/bln
Solusi lengkap untuk profesional dan tim kecil.
@foreach (['Unlimited Proyek', 'Kapasitas 10GB', 'Dukungan Prioritas', 'Akses API'] as $f)
{{ $f }}
@endforeach
Pilih Paket Pro
Enterprise
Custom
Kapasitas tanpa batas untuk skala perusahaan besar.
@foreach (['Server Dedicated', 'SLA 99.9%', 'Manager Akun Khusus'] as $f)
{{ $f }}
@endforeach
Hubungi Kami
@endsection