@use('App\Filters\Forms\User\DashboardFiltersForm') @extends('layouts.user') @section('title', 'Channel dashboard') @section('content') {!! form(FormBuilder::create(DashboardFiltersForm::class)) !!}
{{$user->videos_count}}
{{$user->subscribers_count}}
{{$user->videos_views_count}}
{{$user->videos_comments_count}}
{{$user->videos_likes_count}}
{{$user->videos_dislikes_count}}
| Video | Status | Views | Comments | Interactions | Actions | |
|---|---|---|---|---|---|---|
| @include('users.videos.partials.thumbnail', ['video' => $video]) {{Str::limit($video->title, 30)}} | @include('videos.status') | {{$video->views_count}} |
@if($video->comments_count)
{{trans_choice('comments', $video->comments_count)}}
@else
No comments
@endif
|
@include('users.partials.interactions', ['item' => $video]) | @can('update', $video) @if($video->is_draft) @else @endif @endcan | |
|
No matching video for this period |
||||||
| Channel | Date | Subscribers | ||||
|---|---|---|---|---|---|---|
|
|
{{$subscriber->pivot->subscribe_at->diffForHumans()}}
|
{{trans_choice('subscribers', $subscriber->subscribers_count)}}
|
||||
|
No matching subscribers for this period |
||||||
| Video | Comment | Replies | ||||
|---|---|---|---|---|---|---|
|
{{$comment->user->username}}
• {{$comment->created_at->diffForHumans()}}
|
@if($comment->replies_count)
{{trans_choice('replies', $comment->replies_count)}}
@else
No replies
@endif
|
|||||
|
No matching comments for this period |
||||||
| Video | User | Interaction | ||||
|---|---|---|---|---|---|---|
| @include('users.videos.partials.thumbnail', ['video' => $interaction->likeable]) |
{{$interaction->user->username}}
{{$interaction->perform_at->diffForHumans()}}
|
@if($interaction->status)
|
||||
|
No matching interactions for this period |
||||||