wip
This commit is contained in:
parent
8a2d39d6c9
commit
3dc300e6be
|
|
@ -98,6 +98,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
@if (0)
|
||||
<div class="row">
|
||||
<div class="col-xl-8 col-12">
|
||||
<div class="card mb-4">
|
||||
|
|
@ -116,16 +117,18 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
|
||||
@endsection
|
||||
|
||||
@push('footer')
|
||||
<script>
|
||||
const ctx = document.getElementById('customer-chart').getContext('2d');
|
||||
const ctx1 = document.getElementById('customer-chart-1').getContext('2d');
|
||||
const orders = document.getElementById('orders-chart').getContext('2d');
|
||||
|
||||
@if (0)
|
||||
const ctx = document.getElementById('customer-chart').getContext('2d');
|
||||
const ctx1 = document.getElementById('customer-chart-1').getContext('2d');
|
||||
const myChart = new Chart(ctx, {
|
||||
type: 'bar',
|
||||
data: {
|
||||
|
|
@ -195,13 +198,14 @@
|
|||
maintainAspectRatio: false
|
||||
}
|
||||
});
|
||||
@endif
|
||||
|
||||
|
||||
const orderGradient = ctx.createLinearGradient(0, 0, 0, 380);
|
||||
const orderGradient = orders.createLinearGradient(0, 0, 0, 380);
|
||||
orderGradient.addColorStop(0, 'rgba(180,223,253,1)');
|
||||
orderGradient.addColorStop(1, 'rgba(180,223,253,0)');
|
||||
|
||||
const amountGradient = ctx.createLinearGradient(0, 0, 0, 380);
|
||||
const amountGradient = orders.createLinearGradient(0, 0, 0, 380);
|
||||
amountGradient.addColorStop(0, 'rgba(32,201,151,0.3)');
|
||||
amountGradient.addColorStop(1, 'rgba(32,201,151,0)');
|
||||
|
||||
|
|
|
|||
|
|
@ -4,14 +4,7 @@
|
|||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item"><a href="#">Home</a></li>
|
||||
<li class="breadcrumb-item active" aria-current="page">Library</li>
|
||||
</ol>
|
||||
</nav>
|
||||
|
||||
<div class="row justify-content-center mb-5">
|
||||
<div class="row mt-5 justify-content-center mb-5">
|
||||
<div class="col-12 col-md-9">@include('shared.steps', ['steps' => 3])</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -10,14 +10,7 @@
|
|||
|
||||
@section('content')
|
||||
<div class="container" id="app-cart" v-cloak>
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item"><a href="#">Home</a></li>
|
||||
<li class="breadcrumb-item active" aria-current="page">Library</li>
|
||||
</ol>
|
||||
</nav>
|
||||
|
||||
<div class="row justify-content-center">
|
||||
<div class="row mt-5 justify-content-center">
|
||||
<div class="col-12 col-md-9">@include('shared.steps', ['steps' => 1])</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -10,14 +10,7 @@
|
|||
|
||||
@section('content')
|
||||
<div class="container" id="checkout-app" v-cloak>
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item"><a href="#">Home</a></li>
|
||||
<li class="breadcrumb-item active" aria-current="page">Library</li>
|
||||
</ol>
|
||||
</nav>
|
||||
|
||||
<div class="row justify-content-center">
|
||||
<div class="row mt-5 justify-content-center">
|
||||
<div class="col-12 col-md-9">@include('shared.steps', ['steps' => 2])</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -4,14 +4,7 @@
|
|||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item"><a href="#">Home</a></li>
|
||||
<li class="breadcrumb-item active" aria-current="page">Library</li>
|
||||
</ol>
|
||||
</nav>
|
||||
|
||||
<div class="row justify-content-center">
|
||||
<div class="row mt-5 justify-content-center">
|
||||
<div class="col-12 col-md-9">@include('shared.steps', ['steps' => 4])</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue