@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
まだページがありません。「ページを追加」から作成してください。
| 並び | ページ名 | 種別 | ステータス | 操作 |
|---|---|---|---|---|
| {{ $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))
@endif
@if(!empty($pageCommentFlags[$page->id]))
@if(($pageCommentFlags[$page->id]['unreplied_count'] ?? 0) > 0)
{{ $pageCommentFlags[$page->id]['unreplied_count'] }}
@endif
@endif
{{ \Illuminate\Support\Str::limit((string) $page->admin_memo, 120) }}
|