@extends('layouts.app') @section('title', 'ページ一覧') @section('page-title', $funnel->name . ' — ページ') @section('content') @php $importModeLabels = \App\Support\FunnelPageImportParseMode::labels(); $importModeBadgeClass = [ \App\Support\FunnelPageImportParseMode::UTAGE_STRUCTURED => 'bg-success', \App\Support\FunnelPageImportParseMode::HTML_FALLBACK => 'bg-warning text-dark', \App\Support\FunnelPageImportParseMode::EMPTY => 'bg-secondary', ]; $pageTypeLabels = [ 'lp' => 'LP', 'registration' => '登録', 'line_registration' => 'LINE登録', 'sales' => 'セールス', 'payment' => '決済', 'upsell' => 'アップセル', 'downsell' => 'ダウンサル', 'thanks' => 'サンクス', 'webinar' => 'ウェビナー', 'event_booking' => 'イベント予約', 'member_invitation' => '会員誘導', ]; @endphp
ファネル一覧 @unless($pages->isEmpty())
保存しました
@endunless @isset($builderSession) チャットで作成した構成(マップ)を見る @endisset
ページを追加
@isset($builderSession)
「チャットで作成した構成(マップ)」は作成時点の設計図です。作成後にページを編集した内容は、各ページの編集画面が最新です。
@endisset @unless($pages->isEmpty())
メモ 編集 プレビュー 公開ページを開く 取込元URLから再取り込み ABテスト コメント返信 削除
@endunless
行の で移動できます。ドラッグ&ドロップでの並び替えも可能です。
@if($pages->isEmpty())

まだページがありません。「ページを追加」から作成してください。

@else
@foreach($pages as $page) @endforeach
並び ページ名 種別 ステータス 操作
{{ $page->name }} @if(!empty($page->import_parse_mode)) 取込: {{ $importModeLabels[$page->import_parse_mode] ?? $page->import_parse_mode }} @endif @if(!empty($page->import_source_url)) @include('partials._public_url_inline', [ 'url' => $page->import_source_url, 'linkPrefix' => '取込元:', 'showOpenButton' => true, ]) @endif @if($page->status === 'public' && !empty($page->uid)) @include('partials._public_url_inline', ['url' => url('/p/'.$page->uid), 'showOpenButton' => false, 'showCopyButton' => false]) @endif {{ $pageTypeLabels[$page->page_type ?? 'lp'] ?? 'LP' }} @if($page->status === 'public') 公開 @elseif($page->status === 'scheduled') 公開予約 @else 非公開 @endif
@if($page->status === 'public' && !empty($page->uid)) @endif @if(!empty($page->import_source_url))
@csrf
@endif @if(!empty($pageCommentFlags[$page->id])) @if(($pageCommentFlags[$page->id]['unreplied_count'] ?? 0) > 0) {{ $pageCommentFlags[$page->id]['unreplied_count'] }} @endif @endif
@csrf @method('DELETE')
{{ \Illuminate\Support\Str::limit((string) $page->admin_memo, 120) }}
@endif @include('partials._copy_public_url_script') @push('scripts') @endpush @endsection