@extends('layouts.admin') @section('title', 'User Details') @section('content')

{{ $profile->name }}

{{ $profile->email }}

Back

Role

{{ strtoupper($profile->role) }}

Total Content

{{ number_format($stats['total']) }}

Pending

{{ number_format($stats['pending']) }}

Approved

{{ number_format($stats['approved']) }}

Downloads

{{ number_format($stats['downloads']) }}

Uploaded Content

@forelse ($contents as $item) @empty @endforelse
Title Type Category Approval Downloads Action
{{ $item->title }} {{ $item->content_type_label }} {{ $item->category?->name ?? '-' }} {{ $item->approval_status_label }} {{ number_format($item->downloads) }}
No uploaded content.
@include('admin.partials.pagination', ['paginator' => $contents]) @endsection