⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
chip
/
@core
/
resources
/
views
/
backend
/
View File Name :
admin-home.blade.php
@extends('backend.admin-master') @section('site-title') {{__('Dashboard')}} @endsection @section('content') @php $statistics = [ ['title' => 'Total Admin','value' => $total_admin, 'icon' => 'user-secret'], ['title' => 'Total User','value' => $total_user, 'icon' => 'user'], ['title' => 'Total Team Member','value' => $total_team_member, 'icon' => 'users'], ['title' => 'Total Blogs','value' => $blog_count, 'icon' => 'blog'], ['title' => 'Total Testimonial','value' => $total_testimonial, 'icon' => 'comments'], ['title' => 'Total Faq','value' => $total_faq, 'icon' => 'question-circle'], ['title' => 'Total Price Plan','value' => $total_price_plan,'icon' => 'tags'], ['title' => 'Total Key Feature','value' => $total_key_features, 'icon' => 'key'], ['title' => 'Total Home Variant','value' => '5', 'icon' => 'palette'], ]; @endphp <div class="main-content-inner"> <div class="row"> <!-- seo fact area start --> <div class="col-lg-12"> <div class="row"> @foreach ($statistics as $data) <div class="col-md-4 mt-5 mb-3"> <div class="card card-hover"> <div class="dash-box text-white"> <h1 class="dash-icon"> <i class="fas fa-{{ $data['icon'] }} mb-1 font-16"></i> </h1> <div class="dash-content"> <h5 class="mb-0 mt-1">{{ $data['value'] }}</h5> <small class="font-light">{{ __($data['title']) }}</small> </div> </div> </div> </div> @endforeach </div> </div> <!-- seo fact area end --> </div> </div> @endsection