@extends('admin.partial.template-full') @section('section')
Back

@{{$profile->username}}

{{$profile->statuses()->count()}} Posts | {{$profile->followers()->count()}} Followers | {{$profile->following()->count()}} Following


Moderation Logs


@csrf
@if ($errors->any()) @foreach ($errors->all() as $error)

{{ $error }}

@endforeach @endif
0/500
@if($logs->count() > 0)
@foreach($logs as $log)
@if($log->message != null)
@if($log->user_id != Auth::id())

{{$log->message}}

@else

{{$log->message}}

@endif
@{{$log->user_username}} {{$log->created_at->diffForHumans()}}
@if($log->user_id == Auth::id())
@csrf
@endif
@else

{{$log->created_at->diffForHumans()}}

{{$log->actionToText()}}

by: {{$log->user_username}}

@endif
@endforeach
{{$logs->links()}}
@else
No Activity found
@endif
@endsection @push('scripts') @endpush