@extends('backend.app') @section('content') @push('css') @endpush

Landing Page (Type 5 - Custom)

{{-- Card Header --}}
Custom Pages List
{{ $items->total() ?? 0 }} Total
@can('product.create') Create Custom Page @endcan
{{-- Table Section --}}
@forelse ($items as $key => $item) @empty @endforelse
SL Page Title Public Link Actions
{{ $items->firstItem() + $key }}
{{ $item->title1 }}
ID: {{ $item->id }}
View Live Page
{{-- Edit 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 5 landing pages found

Click the create button to add a new page.

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