@extends('layouts.app') @section('content')
{{ $user->username }}
@can('update', $user->profile) Add Post @endcan
@can('update', $user->profile) Edit Profile @endcan
{{ $user->posts->count() }} posts
{{ $user->profile->followers->count() }} followers
{{ $user->following->count() }} following
{{ $user->profile->title }}
{{ $user->profile->description }}
{{ $user->profile->url }}
@foreach($user->posts as $post) @endforeach
@endsection