@extends('layouts.base') @section('title', 'お惣菜コーナー') @section('content')

お惣菜コーナー

公開チェックインから、オカズリンク付きのものを表示しています。

@foreach($ejaculations as $ejaculation)
@if ($ejaculation->is_private || $ejaculation->tags->isNotEmpty())

@if ($ejaculation->is_private) 非公開 @endif @foreach ($ejaculation->tags as $tag) {{ $tag->name }} @endforeach

@endif @if (!empty($ejaculation->link))
@component('components.link-card', ['link' => $ejaculation->link]) @endcomponent

{{ $ejaculation->link }}

@endif @if (!empty($ejaculation->note))

{!! Formatter::linkify(nl2br(e($ejaculation->note))) !!}

@endif
@endforeach
{{ $ejaculations->links(null, ['className' => 'mt-4 justify-content-center']) }}
@endsection