@extends('layouts.app')
@section('title', 'Settings โ Edit Landing Page')
@section('page-title', 'Edit Landing Page')
@push('styles')
@endpush
@section('content')
@php
$summaryParts = collect([
$landingPage->property_type ? ($typeLabels[$landingPage->property_type] ?? $landingPage->property_type) : null,
$landingPage->city,
$landingPage->purpose === 'for_rent' ? 'Rent' : ($landingPage->purpose === 'for_sale' ? 'Sale' : null),
])->filter()->implode(' ยท ');
@endphp
Edit Landing Page Override
{{ $summaryParts }}
Back to list