MIF_E31220412/resources/views/admin/dashboard.blade.php

103 lines
5.3 KiB
PHP

@extends('layouts.admin')
@section('title', 'Admin Dashboard - INUFA')
@section('header', 'Admin Dashboard')
@section('content')
<!-- Stats Cards -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-8">
<!-- Total Users -->
<div class="bg-white rounded-xl shadow-sm p-6">
<div class="flex items-center">
<div class="p-3 rounded-full bg-blue-100 text-blue-600 mr-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z" />
</svg>
</div>
<div>
<p class="text-sm text-gray-500">Total Pengguna</p>
<p class="text-2xl font-semibold text-gray-800">{{ $stats['users'] ?? 0 }}</p>
</div>
</div>
</div>
<!-- Total Packages -->
<div class="bg-white rounded-xl shadow-sm p-6">
<div class="flex items-center">
<div class="p-3 rounded-full bg-green-100 text-green-600 mr-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 8h14M5 8a2 2 0 110-4h14a2 2 0 110 4M5 8v10a2 2 0 002 2h10a2 2 0 002-2V8m-9 4h4" />
</svg>
</div>
<div>
<p class="text-sm text-gray-500">Total Paket</p>
<p class="text-2xl font-semibold text-gray-800">{{ $stats['packages'] ?? 0 }}</p>
</div>
</div>
</div>
<!-- Total Rentals -->
<div class="bg-white rounded-xl shadow-sm p-6">
<div class="flex items-center">
<div class="p-3 rounded-full bg-yellow-100 text-yellow-600 mr-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2" />
</svg>
</div>
<div>
<p class="text-sm text-gray-500">Total Sewa</p>
<p class="text-2xl font-semibold text-gray-800">{{ $stats['rentals'] ?? 0 }}</p>
</div>
</div>
</div>
<!-- Total Revenue -->
<div class="bg-white rounded-xl shadow-sm p-6">
<div class="flex items-center">
<div class="p-3 rounded-full bg-purple-100 text-purple-600 mr-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
<div>
<p class="text-sm text-gray-500">Total Pendapatan</p>
<p class="text-2xl font-semibold text-gray-800">Rp {{ number_format($stats['revenue'] ?? 0, 0, ',', '.') }}</p>
</div>
</div>
</div>
</div>
<!-- Recent Activities -->
<div class="bg-white rounded-xl shadow-sm p-6">
<div class="flex items-center justify-between mb-6">
<h3 class="text-lg font-semibold text-gray-800">Aktivitas Terbaru</h3>
<a href="{{ route('riwayat') }}" class="text-blue-600 hover:text-blue-800 text-sm font-medium">Lihat Semua</a>
</div>
<div class="space-y-4">
@if(isset($activities) && count($activities) > 0)
@foreach($activities as $activity)
<div class="flex items-start p-4 rounded-lg hover:bg-gray-50">
<div class="bg-{{ $activity['color'] }}-100 text-{{ $activity['color'] }}-600 rounded-full p-2 mr-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="{{ $activity['icon'] }}" />
</svg>
</div>
<div class="flex-1">
<p class="font-medium text-gray-800">{{ $activity['title'] }}</p>
<p class="text-sm text-gray-600">{{ $activity['description'] }}</p>
<p class="text-xs text-gray-400 mt-1">{{ $activity['time'] }}</p>
</div>
</div>
@endforeach
@else
<div class="text-center py-8">
<svg xmlns="http://www.w3.org/2000/svg" class="h-12 w-12 mx-auto text-gray-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
</svg>
<p class="mt-2 text-gray-500">Belum ada aktivitas terbaru</p>
</div>
@endif
</div>
</div>