{{-- Extends layout --}} @extends('front.layouts.app') @section('content')
Image

{{ $user->name }}

{{ $user->summary }}
@component('front.components.user_profile_tabs', [ 'active_tab' => $active_tabs, 'aria_selected' => $aria_selected, 'user' => $user, ]) @endcomponent

 

@if (!empty($active_tabs[1])) @if ($user->determinations->count() > 0) @foreach ($user->determinations as $determination) @endforeach
{{ __('Tarih') }} {{ __('Tespit') }}
{{ $determination->created_at }} {{ $determination->header }}
@else @component('front.components.alert_blue', [ 'message' => __('Kullanıcının herhangi bir tespiti bulunmamaktadır.'), ]) @endcomponent @endif @elseif(!empty($active_tabs[2])) @if ($user->comments->count() > 0) @foreach ($user->comments as $comment) @endforeach
{{ __('Tarih') }} {{ __('Yorum') }}
{{ $comment->created_at }} {{ $comment->comment_text }}
@else @component('front.components.alert_blue', [ 'message' => __('Kullanıcının herhangi bir yorumu bulunmamaktadır.'), ]) @endcomponent @endif @endif

{{ __('Sosyal Medya') }}

@if (!empty($user->facebook_link)) @endif @if (!empty($user->twitter_link)) @endif @component('front.components.user_message', [ 'user' => $user, ]) @endcomponent
@endsection