2018-09-06 23:48:54 +09:00
|
|
|
@extends('search.base')
|
|
|
|
|
|
|
|
@section('tab-content')
|
|
|
|
@if(empty($results))
|
|
|
|
<p>このタグが含まれるチェックインはありません。</p>
|
|
|
|
@else
|
|
|
|
<ul class="list-group">
|
|
|
|
@foreach($results as $ejaculation)
|
2019-03-10 16:28:38 +09:00
|
|
|
<li class="list-group-item border-bottom-only pt-3 pb-3 text-break">
|
2018-09-06 23:48:54 +09:00
|
|
|
<!-- span -->
|
|
|
|
<div class="d-flex justify-content-between">
|
|
|
|
<h5>
|
2019-01-17 00:12:25 +09:00
|
|
|
<a href="{{ route('user.profile', ['id' => $ejaculation->user->name]) }}" class="text-dark"><img src="{{ $ejaculation->user->getProfileImageUrl(30) }}" width="30" height="30" class="rounded d-inline-block align-bottom"> {{ $ejaculation->user->display_name }}</a>
|
2018-09-06 23:48:54 +09:00
|
|
|
<a href="{{ route('checkin.show', ['id' => $ejaculation->id]) }}" class="text-muted"><small>{{ $ejaculation->ejaculated_date->format('Y/m/d H:i') }}</small></a>
|
|
|
|
</h5>
|
|
|
|
<div>
|
|
|
|
<a class="text-secondary timeline-action-item" href="{{ route('checkin', ['link' => $ejaculation->link, 'tags' => $ejaculation->textTags()]) }}"><span class="oi oi-reload" data-toggle="tooltip" data-placement="bottom" title="同じオカズでチェックイン"></span></a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- tags -->
|
|
|
|
@if ($ejaculation->is_private || $ejaculation->tags->isNotEmpty())
|
|
|
|
<p class="mb-2">
|
|
|
|
@if ($ejaculation->is_private)
|
|
|
|
<span class="badge badge-warning"><span class="oi oi-lock-locked"></span> 非公開</span>
|
|
|
|
@endif
|
|
|
|
@foreach ($ejaculation->tags as $tag)
|
2018-09-11 23:05:01 +09:00
|
|
|
<a class="badge badge-secondary" href="{{ route('search', ['q' => $tag->name]) }}"><span class="oi oi-tag"></span> {{ $tag->name }}</a>
|
2018-09-06 23:48:54 +09:00
|
|
|
@endforeach
|
|
|
|
</p>
|
|
|
|
@endif
|
|
|
|
<!-- okazu link -->
|
|
|
|
@if (!empty($ejaculation->link))
|
|
|
|
<div class="row mx-0">
|
2019-02-27 22:52:45 +09:00
|
|
|
@component('components.link-card', ['link' => $ejaculation->link])
|
2019-02-23 22:29:53 +09:00
|
|
|
@endcomponent
|
2019-01-16 07:25:06 +09:00
|
|
|
<p class="d-flex align-items-baseline mb-2 col-12 px-0">
|
|
|
|
<span class="oi oi-link-intact mr-1"></span><a class="overflow-hidden" href="{{ $ejaculation->link }}" target="_blank" rel="noopener">{{ $ejaculation->link }}</a>
|
2018-09-06 23:48:54 +09:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
<!-- note -->
|
|
|
|
@if (!empty($ejaculation->note))
|
2019-03-10 16:28:38 +09:00
|
|
|
<p class="mb-0 text-break">
|
2018-09-06 23:48:54 +09:00
|
|
|
{!! Formatter::linkify(nl2br(e($ejaculation->note))) !!}
|
|
|
|
</p>
|
|
|
|
@endif
|
|
|
|
</li>
|
|
|
|
@endforeach
|
|
|
|
</ul>
|
2019-02-16 23:26:09 +09:00
|
|
|
{{ $results->links(null, ['className' => 'mt-4 justify-content-center']) }}
|
2018-09-06 23:48:54 +09:00
|
|
|
@endif
|
|
|
|
@endsection
|