@extends('layouts/contentNavbarLayout')
@section('title', 'KPI Achievement')
@section('content')
@php
$breadcrumbs = [
['label' => 'Dashboard', 'url' => route('dashboard-analytics')],
['label' => 'KPI Achievement'],
['label' => 'Companies by Sectors']
];
@endphp
@include('layouts.partials.page-header', [
'title' => 'Companies by Sectors',
'slot' => view('layouts.partials.breadcrumb', compact('breadcrumbs'))->render()
])