@extends('layouts.app') @section('title', __('KPI blocks')) @section('page-title', __('KPI blocks')) @section('page-subtitle', __('The configurable KPI cards displayed on the home page.')) @section('content') @include('super-admin._nav')
{{ __('All KPI blocks') }} {{ $features->count() }} {{ __('Add KPI block') }}
@forelse($features as $f)
{{ $f->title() }}
{{ $f->summary() }}
#{{ $f->sort }} {{ $f->is_active ? __('Active') : __('Inactive') }} {{ __('Edit') }}
@csrf @method('DELETE')
@empty
{{ __('No KPI blocks yet.') }}
@endforelse
@endsection