mirror of
https://github.com/twinpath/app.git
synced 2026-01-26 13:21:59 +07:00
23 lines
826 B
PHP
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
|