@extends('layouts/backendTemplate') @section('content')

Dashboard

@if ($itemView['sub_category_no_where_else'])

CHIANG MAI AND NOWHERE ELSE

@foreach ($itemView['sub_category_no_where_else'] as $item)
{{ number_format($item['article_count'], 0) }}
{{ $item['name'] ?? '-' }}
@endforeach
@endif @if ($itemView['sub_category_where_else'])

WHERE ELSE

@foreach ($itemView['sub_category_where_else'] as $item)
{{ number_format($item['article_count'], 0) }}
{{ $item['name'] ?? '-' }}
@endforeach
@endif

FILES

{{ number_format($countVideoView, 0) }}
Video
{{ number_format($countSoundView, 0) }}
Sound
{{ number_format($countImageView, 0) }}
Images
{{ number_format($countDocumentView, 0) }}
Documents
@endsection @section('script') @endsection