first commit

This commit is contained in:
2025-12-21 08:03:18 +07:00
commit 7c746f776a
300 changed files with 24836 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
@extends('layouts.app')
@section('content')
<x-common.page-breadcrumb pageTitle="Bar chart" />
<div class="space-y-6">
<x-common.component-card title="Bar chart 1">
<!-- ====== Bar Chart One Start -->
<div class="custom-scrollbar max-w-full overflow-x-auto">
<div id="chartOne" class="min-w-[1000px]"></div>
</div>
<!-- ====== Bar Chart One End -->
</x-common.component-card>
<x-common.component-card title="Bar chart 2">
<!-- ====== Bar Chart Two Start -->
<div class="custom-scrollbar max-w-full overflow-x-auto">
<div id="chartSix" class="min-w-[1000px]"></div>
</div>
<!-- ====== Bar Chart Two End -->
</x-common.component-card>
</div>
@endsection