@extends('layouts.landing') @section('content') @if(isset($sliders) && $sliders->count() > 0)
@foreach($sliders as $i => $slide)
{{ $slide->title }}

{{ $slide->title }}

@if($slide->subtitle)

{{ $slide->subtitle }}

@endif @if($slide->button_text && $slide->button_url) {{ $slide->button_text }} @endif
@endforeach
@foreach($sliders as $i => $slide) @endforeach
@endif @if(!isset($sliders) || $sliders->count() === 0)

{{ __('messages.real_estate_management_made_easy') ?? 'Real Estate Management Made Easy' }}

{{ __('messages.manage_properties_tenants_leases_payments') ?? 'Manage your properties, tenants, leases, and payments all in one powerful platform. Built for modern real estate companies.' }}

{{ __('messages.no_credit_card_required') ?? 'No credit card required • 14-day free trial' }}

@endif
@if($featuredProperties->count() > 0)
{{ __('messages.featured') }}

{{ __('messages.featured_properties') ?? 'Featured Properties' }}

{{ __('messages.discover_our_featured_listings') ?? 'Discover our handpicked selection of premium properties' }}

@foreach($featuredProperties as $property) @endforeach
@if($featuredProperties->count() >= 6) @endif
@endif

{{ __('messages.how_it_works') ?? 'How It Works' }}

{{ __('messages.get_started_in_minutes') ?? 'Get started in minutes with our simple 4-step process' }}

1

{{ __('messages.sign_up') ?? 'Sign Up' }}

{{ __('messages.create_account') ?? 'Create your free account in less than 2 minutes' }}

2

{{ __('messages.add_properties') ?? 'Add Properties' }}

{{ __('messages.list_properties') ?? 'List and manage your properties with photos and details' }}

3

{{ __('messages.manage_tenants') ?? 'Manage Tenants' }}

{{ __('messages.track_leases') ?? 'Track leases, tenants, and rental agreements' }}

4

{{ __('messages.track_payments') ?? 'Track Payments' }}

{{ __('messages.monitor_revenue') ?? 'Monitor payments and generate reports automatically' }}

{{ __('messages.property_statistics') ?? 'Property Statistics' }}

{{ __('messages.explore_our_property_portfolio') ?? 'Explore our extensive property portfolio' }}

{{ __('messages.total_properties') ?? 'Total Properties' }}
{{ __('messages.available_properties') ?? 'Available Properties' }}
{{ __('messages.rented_properties') ?? 'Rented Properties' }}

{{ __('messages.what_our_customers_say') ?? 'What Our Customers Say' }}

{{ __('messages.trusted_by_companies') ?? 'Trusted by real estate companies across Tanzania' }}

"This platform has transformed how we manage our properties. The ease of use and comprehensive features make it a must-have for any real estate company."

JD

John Doe

CEO, Dar Properties

"The payment tracking and reporting features have saved us hours of work each week. Highly recommend!"

SM

Sarah Mwangi

Property Manager, Arusha Realty

"The multi-tenant architecture ensures our data is secure and isolated. Perfect for our growing business needs."

AK

Ahmed Kassim

Director, Zanzibar Properties

{{ __('messages.choose_your_plan') ?? 'Choose Your Plan' }}

{{ __('messages.flexible_pricing') ?? 'Flexible pricing plans to suit your business needs' }}

@php $subscriptionPlans = $subscriptionPlans ?? collect(); $planCount = $subscriptionPlans->count(); $gridCols = $planCount >= 4 ? 'md:grid-cols-4' : 'md:grid-cols-3'; @endphp @if($planCount > 0)
@foreach($subscriptionPlans as $plan) @php $isPopular = $loop->iteration === 2 && $planCount >= 2; $features = is_array($plan->features) ? $plan->features : []; $featureItems = array_slice($features, 0, 2); $propertiesLimit = $plan->properties_limit === null ? '∞' : $plan->properties_limit; $usersLimit = $plan->users_limit === null ? '∞' : $plan->users_limit; $interval = $plan->interval ?? 'monthly'; $intervalUnit = $interval === 'yearly' ? 'year' : 'month'; $priceValue = number_format((float) $plan->price, 0); $priceLabel = $priceValue . ' ' . $plan->currency . '/' . $intervalUnit; $listItems = array_merge( ["Up to {$propertiesLimit} Properties", "Up to {$usersLimit} Users"], $featureItems ); $listItems = array_slice($listItems, 0, 4); @endphp
@if($isPopular)
{{ __('messages.popular') ?? 'POPULAR' }}
@endif

{{ $plan->name }}

@if($plan->price === null) Custom @else {{ $priceValue }} {{ ' ' . $plan->currency . '/' . $intervalUnit }} @endif
    @foreach($listItems as $item)
  • {{ $item }}
  • @endforeach
{{ __('messages.get_started') ?? 'Get Started' }}
@endforeach
@else

No subscription plans are available right now.

{{ __('messages.get_started') ?? 'Get Started' }}
@endif

{{ __('messages.ready_to_get_started') ?? 'Ready to Get Started?' }}

{{ __('messages.join_thousands_companies') ?? 'Join thousands of real estate companies already using our platform' }}

{{ __('messages.start_free_trial') ?? 'Start Your Free Trial' }}
@endsection