@extends('dashboard.layout') @section('content')
{{ auth()->user()->name  }}

{{$user->name}}

{{$user->job_title}}


{{__('Location')}}

{{$user->location}}


{{__('About')}}

{{$user->about}}

{{__('Recent Activities')}}

@forelse($logs as $log)
{{(new Carbon\Carbon($log->created_at))->diffForHumans()}}

{{$log->body}}

@empty

{{__('You not have any activities')}}

@endforelse
@endsection