@extends('backEnd.layouts.master') @section('title') Landing Pages Management @endsection @section('content')

Landing Pages Management

All Landing Pages

Create New Landing Page
@if(session('success')) @endif @if($landingPages->count() > 0)
@foreach($landingPages as $landingPage) @endforeach
ID Title Template Status Created Actions
{{ $landingPage->id }} {{ $landingPage->title }} @if($landingPage->subtitle)
{{ $landingPage->subtitle }} @endif
{{ $landingPage->template->name }} @if($landingPage->status) Active @else Inactive @endif {{ $landingPage->created_at->format('M d, Y') }}
@csrf
@else
No Landing Pages Found

Create your first landing page to get started.

Create Landing Page
@endif
@endsection