Files
app/resources/views/pages/chart/bar-chart.blade.php
2025-12-22 12:37:16 +07:00

23 lines
826 B
PHP

@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