@extends('layouts.admin')
@section('page_title', $isRtl ? 'مقاييس الثقة' : 'Trust Metrics')
@section('content')
| {{ $isRtl ? 'القيمة' : 'Value' }} |
{{ $isRtl ? 'التسمية' : 'Label' }} |
{{ $isRtl ? 'الترتيب' : 'Order' }} |
{{ $isRtl ? 'الحالة' : 'Status' }} |
|
@forelse($metrics as $metric)
| {{ $metric->value }} |
{{ $metric->label }} |
{{ $metric->order }} |
@if($metric->is_active)
{{ $isRtl ? 'نشط' : 'Active' }}
@else
{{ $isRtl ? 'معطل' : 'Inactive' }}
@endif
|
|
@empty
| {{ $isRtl ? 'لا توجد مقاييس بعد' : 'No metrics yet' }} |
@endforelse
{{ $metrics->links() }}
@endsection