{{-- Homepage --}}
{{ url('/') }}
daily
1.0
{{-- Listings Search --}}
{{ route('listings.search') }}
daily
0.9
{{-- Individual Listings --}}
@foreach($listings as $listing)
{{ route('listing.details', $listing->id) }}
{{ $listing->updated_at->toW3cString() }}
weekly
0.8
@endforeach
{{-- Legal/Static Pages --}}
{{ route('privacy-policy') }}
monthly
0.3
{{ route('terms-conditions') }}
monthly
0.3
{{ route('about-us') }}
monthly
0.5
{{ route('advertise') }}
monthly
0.4
{{-- Custom Pages --}}
@foreach($customPages as $page)
{{ route('custom-page', $page->slug) }}
{{ $page->updated_at->toW3cString() }}
monthly
0.4
@endforeach
{{-- Auth Pages --}}
{{ route('login') }}
yearly
0.2
{{ route('register') }}
yearly
0.2