@extends('admin.layout') @section('title', 'Admin Dashboard') @section('page_title', 'Dashboard') @section('content')
| User | Role | Joined |
|---|---|---|
|
{{ $user->name }}
{{ $user->email }}
|
@if($user->role === 'super_admin') Super Admin @elseif($user->role === 'admin') Admin @else User @endif | {{ $user->created_at->diffForHumans() }} |
| No users found | ||
| Video | Status | Uploaded |
|---|---|---|
|
@if($video->thumbnail)
by {{ $video->user->name }}
|
@switch($video->status) @case('ready') Ready @break @case('processing') Processing @break @case('pending') Pending @break @case('failed') Failed @break @endswitch | {{ $video->created_at->diffForHumans() }} |
| No videos found | ||