54 lines
2.4 KiB
PHP
54 lines
2.4 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('title', 'Halaman Dasbor')
|
|
|
|
@section('content')
|
|
<div class="container mx-auto py-4">
|
|
<!-- Header -->
|
|
<div class="flex justify-between items-center mb-4">
|
|
<h3 class="text-xl font-bold">Halaman Dasbor</h3>
|
|
<div class="flex items-center gap-3">
|
|
<div class="bg-blue-100 text-blue-600 px-3 py-2 rounded-lg flex items-center gap-2 text-sm">
|
|
<i class="bi bi-clock-history"></i>
|
|
{{ \Carbon\Carbon::now()->translatedFormat('l, d F Y') }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Cards -->
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
|
|
<div class="bg-white rounded-lg shadow-md p-4 flex justify-between items-center hover:shadow-lg transition-transform duration-300 transform hover:-translate-y-2">
|
|
<div>
|
|
<h5 class="text-gray-500 text-sm">Kategori</h5>
|
|
<h3 class="font-bold text-xl">10</h3>
|
|
</div>
|
|
<div class="w-12 h-12 bg-blue-100 text-blue-600 rounded-lg flex items-center justify-center text-xl">
|
|
<i class="bi bi-diagram-3"></i>
|
|
</div>
|
|
</div>
|
|
<div class="bg-white rounded-lg shadow-md p-4 flex justify-between items-center hover:shadow-lg transition-transform duration-300 transform hover:-translate-y-2">
|
|
<div>
|
|
<h5 class="text-gray-500 text-sm">Templat</h5>
|
|
<h3 class="font-bold text-xl">20</h3>
|
|
</div>
|
|
<div class="w-12 h-12 bg-blue-100 text-blue-600 rounded-lg flex items-center justify-center text-xl">
|
|
<i class="bi bi-card-list"></i>
|
|
</div>
|
|
</div>
|
|
<div class="bg-white rounded-lg shadow-md p-4 flex justify-between items-center hover:shadow-lg transition-transform duration-300 transform hover:-translate-y-2">
|
|
<div>
|
|
<h5 class="text-gray-500 text-sm">Pelanggan</h5>
|
|
<h3 class="font-bold text-xl">24</h3>
|
|
</div>
|
|
<div class="w-12 h-12 bg-blue-100 text-blue-600 rounded-lg flex items-center justify-center text-xl">
|
|
<i class="bi bi-person"></i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Pesan login -->
|
|
<div class="bg-green-100 text-green-700 p-4 rounded-lg mt-4">
|
|
Berhasil login sebagai <strong>{{ auth('admin')->user()->name }}</strong>
|
|
</div>
|
|
</div>
|
|
@endsection |