@extends('layouts/contentNavbarLayout')
@section('title', 'KPI Indicator - Listing')
@section('page-script')
@vite(['resources/assets/js/kpi-indicator-pmu-admin.js'])
@endsection
@section('content')
@php
$breadcrumbs = [
['label' => 'Dashboard', 'url' => route('dashboard-analytics')],
['label' => 'KPI Indicator'],
['label' => 'List of Endorsement']
];
@endphp
@include('layouts.partials.page-header', [
'title' => 'List of Endorsement',
'slot' => view('layouts.partials.breadcrumb', compact('breadcrumbs'))->render()
])