@extends('admin.master') @section('title', 'Landing Pages') @section('content') {{-- ================================================================ FONT AWESOME ================================================================ --}} {{-- ================================================================ PAGE CSS ================================================================ --}} {{-- ================================================================ PAGE ================================================================ --}}
{{-- ============================================================ HEADER ============================================================ --}}
LANDING PAGE MANAGER

Landing Pages

প্রতিটি product-এর জন্য আলাদা landing page তৈরি, edit, preview, publish, order এবং incomplete lead সহজে track ও manage করুন।

{{-- ============================================================ AJAX ALERT ============================================================ --}} {{-- ============================================================ SEARCH ============================================================ --}}
@if($search !== '') Clear @endif
{{-- ============================================================ LANDING PAGE LIST ============================================================ --}}
{{-- Header --}}

Landing Page List

Manage all landing pages from one place
{{ $landingPages->total() }} {{ $landingPages->total() === 1 ? 'Page' : 'Pages' }}
{{-- Table --}}
@forelse( $landingPages as $page ) {{-- Landing Page --}} {{-- Product --}} {{-- Orders --}} {{-- Incomplete --}} {{-- Status --}} {{-- Updated --}} {{-- Actions --}} @empty @endforelse
Landing Page Product Orders Incomplete Status Updated Actions
{{ $page->title }} /{{ $page->slug }}
{{ optional( $page->product )->name ?: 'Product removed' }}
{{ (int) $page ->completed_orders_count }} Orders {{ (int) $page ->incomplete_orders_count }} Incomplete {{ optional( $page->updated_at )->format( 'd M Y, h:i A' ) }}
{{-- Live --}} @if($page->is_active) @endif {{-- Preview --}} {{-- Edit --}} {{-- Delete --}}
No landing pages found

নতুন landing page তৈরি করতে Create Landing Page button ব্যবহার করুন।

{{-- Pagination --}} @if( $landingPages->hasPages() )
{{ $landingPages->withQueryString()->links() }}
@endif
{{-- ================================================================ EXISTING BUILDER JS ================================================================ --}} {{-- ================================================================ INDEX-ONLY JS ================================================================ --}} @endsection