@extends('layout')
@section('title') single-user @endsection
@section('content')
{{$user->name}}
@if ($user->role == "admin") {{$user->role}} @endif
@if ($posts->count() == 0) Создайте свой первый пост
@else @each("posts.post", $posts, "post")
@endif
@yield('action-button')
@endsection