@extends('layout.default')
@section('title')
{{ __('stat.stats') }} - {{ config('other.title') }}
@endsection
@section('breadcrumbs')
{{ __('stat.stats') }}
{{ __('stat.languages') }}
@endsection
@section('page', 'page__stats--languages')
@section('main')
{{ __('stat.languages') }}
@foreach ($languages as $code => $name)
{{ $name }} |
Used By
{{ App\Models\UserSetting::where('locale', '=', $code)->count() }}
Users
|
@endforeach
@endsection