@extends('layouts.admin') @section('page_title', $isRtl ? 'مقاييس الثقة' : 'Trust Metrics') @section('content')

{{ $isRtl ? 'قائمة المقاييس' : 'Trust Metrics List' }}

{{ $isRtl ? 'إضافة مقياس' : 'Add Metric' }}
@forelse($metrics as $metric) @empty @endforelse
{{ $isRtl ? 'القيمة' : 'Value' }} {{ $isRtl ? 'التسمية' : 'Label' }} {{ $isRtl ? 'الترتيب' : 'Order' }} {{ $isRtl ? 'الحالة' : 'Status' }}
{{ $metric->value }} {{ $metric->label }} {{ $metric->order }} @if($metric->is_active) {{ $isRtl ? 'نشط' : 'Active' }} @else {{ $isRtl ? 'معطل' : 'Inactive' }} @endif
@csrf @method('DELETE')
{{ $isRtl ? 'لا توجد مقاييس بعد' : 'No metrics yet' }}
{{ $metrics->links() }}
@endsection