@extends('user.base') @section('title', $user->display_name . ' (@' . $user->name . ')') @push('head') @if (Route::currentRouteName() === 'user.profile') @endif @endpush @section('sidebar') {{-- TODO: タイムラインとオカズのテンプレを分けたら条件外す --}} @if (Route::currentRouteName() === 'user.profile') @if (!empty($tags) && (!$user->is_protected || $user->isMe()))
よく使っているタグ
@foreach ($tags as $tag)
{{ $tag->name }}
{{ $tag->count }}
@endforeach
@endif @endif @endsection @section('tab-content') @if ($user->is_protected && !$user->isMe())

このユーザはチェックイン履歴を公開していません。

@else @if (Route::currentRouteName() === 'user.profile' && $ejaculations->count() !== 0 && $ejaculations->currentPage() === 1)
Shikontributions

@endif {{ $ejaculations->links(null, ['className' => 'mt-4 justify-content-center']) }} @endif @component('components.modal', ['id' => 'deleteCheckinModal']) @slot('title') 削除確認 @endslot のチェックインを削除してもよろしいですか? @slot('footer')
{{ csrf_field() }} {{ method_field('DELETE') }}
@endslot @endcomponent @endsection @push('script') @if (Route::currentRouteName() === 'user.profile') @endif @endpush