@extends('backend.app') @section('title', 'Landing Pages (Type 6)') @push('css') @endpush @section('content')

Landing Page (Type 6 - Dynamic)

@include('backend.partials.message')
{{-- Card Header --}}
Dynamic Pages List
{{ $items->total() ?? 0 }} Total
@if(auth()->user()->can('product.create') || auth()->user()->can('permission.view')) Create Type 6 Page @endif
{{-- ✅ Table Section (Fixed Layout, No Scroll) --}}
@forelse ($items as $key => $item) {{-- ✅ Truncated Text (...) --}} {{-- ✅ Truncated Text (...) --}} @empty @endforelse
# Image Page Title Product Link Actions
{{ $items->firstItem() + $key }} @if($item->right_product_image) Img @elseif($item->product && $item->product->image) Product @else
@endif
{{ $item->title1 }}
ID: {{ $item->id }}
{{ $item->product ? $item->product->name : 'N/A' }}
{{-- Edit Button --}} @if(auth()->user()->can('product.edit') || auth()->user()->can('permission.view')) @endif {{-- Color Settings Button --}} @if(auth()->user()->can('product.edit') || auth()->user()->can('permission.view')) @endif {{-- Delete Button --}} @if(auth()->user()->can('product.delete') || auth()->user()->can('permission.view'))
@csrf @method('DELETE')
@endif
No Type 6 landing pages found

Click the create button to add a new page.

{{-- Pagination --}} @if($items->hasPages()) @endif
@endsection @push('js') @endpush