@extends('layouts.app') @section('title', 'Admin Dashboard - SOFT Paste') @section('content')
Manage all snippets and users across the entire platform.
| Title | Author | Syntax | Visibility | Status | Created | Actions |
|---|---|---|---|---|---|---|
| {{ $paste->title ?? 'Untitled Snippet' }} | {{ $paste->user ? $paste->user->name : 'Guest' }} | {{ $paste->syntax }} | @if($paste->visibility === 'public') 🌍 @elseif($paste->visibility === 'unlisted') 🔗 @else 🔒 @endif {{ $paste->visibility }} | @if($paste->expires_at && $paste->expires_at->isPast()) Expired @else Active @endif | {{ $paste->created_at->format('M d, Y H:i') }} |
| User | Role | Joined Time | Actions | |
|---|---|---|---|---|
|
@if($user->avatar)
{{ substr($user->name, 0, 1) }}
@endif
{{ $user->name }}
|
{{ $user->email }} | @if($user->is_admin) Admin @else User @endif | {{ $user->created_at->format('M d, Y H:i') }} |
|