{{ url('/') }} {{ now()->toAtomString() }} weekly 1.0 {{ url('/product') }} {{ now()->toAtomString() }} monthly 0.8 {{ url('/pricing') }} {{ now()->toAtomString() }} monthly 0.7 {{ url('/contact') }} {{ now()->toAtomString() }} yearly 0.6 {{ route('blog.index') }} {{ optional($blogPosts->max('updated_at'))->toAtomString() ?? now()->toAtomString() }} weekly 0.8 {{ route('showcases.index') }} {{ optional($showcases->max('updated_at'))->toAtomString() ?? now()->toAtomString() }} monthly 0.8 @foreach ($blogPosts as $blogPost) {{ route('blog.show', $blogPost->slug) }} {{ optional($blogPost->updated_at ?? $blogPost->published_at)->toAtomString() }} monthly 0.7 @endforeach @foreach ($showcases as $showcase) {{ route('showcases.show', $showcase) }} {{ optional($showcase->updated_at ?? $showcase->published_at)->toAtomString() ?? now()->toAtomString() }} monthly 0.7 @endforeach