@extends('central.super.layout') @section('title', __('super.stats.title')) @section('content')

{{ __('super.stats.items') }}

@forelse($stats as $stat) @empty @endforelse
# {{ __('super.stats.field_value') }} {{ __('super.stats.field_label') }} {{ __('super.stats.field_icon') }} {{ __('super.common.status') }} {{ __('super.common.actions') }}
{{ $stat->sort_order }} {{ $stat->value }} {{ $stat->label }} @if($stat->icon) {{ $stat->icon }} @else @endif {{ $stat->is_active ? __('super.common.active') : __('super.common.inactive') }} {{ __('super.common.edit') }}
@csrf @method('DELETE')
{{ __('super.stats.no_stats') }} {{ __('super.stats.add_one') }}
@push('scripts') @endpush @endsection