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

@{{$profile->username}}

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


Recent Activity


@if($logs->count() > 0)
@foreach($logs as $log)

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

{{$log->message}}

IP: {{$log->ip_address}}

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