@extends('layouts.master')
@push('style')
@endpush
@section('content')
{!! $monthlyChart->container() !!}
{!! $yearlyChart->container() !!}
| ID Kecamatan |
Nama Kecamatan |
Cluster |
@if (isset($clusterResults))
@foreach ($clusterResults as $result)
| {{ $result['id_kecamatan'] }} |
{{ $result['nama_kecamatan'] }} |
{{ $result['cluster'] }} |
@endforeach
@else
| Tidak ada data clustering yang tersedia |
@endif
@endsection
@section('js')
{{ $monthlyChart->script() }}
{{ $yearlyChart->script() }}
@endsection