28 lines
785 B
PHP
28 lines
785 B
PHP
<div class="w-full">
|
|
<canvas id="monthly"></canvas>
|
|
</div>
|
|
|
|
<script>
|
|
function drawMonth() {
|
|
let monthly_invoices = {!! $monthly_invoices !!};
|
|
let monthly_incoming = {!! $monthly_incoming !!};
|
|
|
|
new Chart(document.getElementById('monthly'),
|
|
{
|
|
type: 'line',
|
|
data: {
|
|
datasets: [
|
|
{
|
|
label: '{{ __('invoice.Invoices') }}',
|
|
data: monthly_invoices
|
|
},
|
|
{
|
|
label: '{{ __('incoming.Incoming') }}',
|
|
data: monthly_incoming
|
|
}
|
|
]
|
|
}
|
|
});
|
|
}
|
|
</script>
|