Initial commit

This commit is contained in:
2025-12-22 12:03:01 +07:00
commit 10dc345147
367 changed files with 31188 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