@extends('layouts.public') @section('title', __('Marketplace')) @section('meta_description', __('Property, vehicles, equipment and services across Nepal.')) @section('content')

{{ __('Marketplace') }}

{{ __('Property leads, but the same listings, enquiries and viewings work across every category we run.') }}

@foreach ($sectors as $sector) @php // Real estate has its own pages; everything else browses here. $url = $sector->is_primary ? route('properties.index') : route('marketplace.sector', $sector->slug); @endphp

{{ $sector->name }}

@if ($sector->tagline)

{{ $sector->tagline }}

@endif

{{ trans_choice('One listing|:count listings', $sector->listings_count, ['count' => number_format($sector->listings_count)]) }}

@endforeach
@endsection