@extends('layouts.main') @section('title', 'Admin Dashboard – World Gymnastics') @section('styles') @endsection @section('content')
Manage users, posts, and site content
Total Users
Total Posts
Published
Drafts
| Title | Author | Status | Date | |
|---|---|---|---|---|
| {{ Str::limit($post->title, 40) }} | {{ $post->user->name }} | {{ $post->status }} | {{ $post->created_at->format('d M Y') }} |
| User | Role | Joined | ||
|---|---|---|---|---|
|
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
|
{{ $user->email }} | {{ $user->is_admin ? 'Admin' : 'User' }} | {{ $user->created_at->format('d M Y') }} | @if($user->id !== auth()->id()) @else You @endif |