@extends('layouts.app') @section('title', 'イベント・予約') @section('page-title', 'イベント・予約') @section('content')
イベントを追加
@if($events->isEmpty())

イベントがありません

イベントを追加する
@else
@foreach($events as $event) @php $publicUrl = ($event->is_published && !empty($event->uid)) ? url('/e/'.$event->uid) : null; @endphp @endforeach
イベント名 タイプ 公開 作成日 操作
{{ $event->name }} @if($publicUrl) @include('partials._public_url_inline', ['url' => $publicUrl, 'showOpenButton' => false]) @endif {{ $event->type === 'seminar' ? 'セミナー' : '個別相談' }} @if($publicUrl) 公開 @else 非公開 @endif {{ $event->created_at->format('Y/m/d') }}
@if($publicUrl) @endif
@csrf @method('DELETE')
@endif @include('partials._copy_public_url_script') @endsection