{{ $siteUrl }}/
{{ $siteName }}
{{ $siteDescription }}
{{ now()->toIso8601String() }}
{{ url(config('seo.favicon')) }}
{{ url(config('seo.logo')) }}
Copyright {{ date('Y') }} {{ $siteName }}
{{ $siteName }}
@foreach($articles as $article)
{{ route('articles.show', $article->slug) }}
title }}]]>
{{ $article->created_at->toIso8601String() }}
{{ $article->updated_at->toIso8601String() }}
excerpt ?? Str::limit(strip_tags($article->content), 300) }}]]>
content !!}]]>
@if($article->author)
{{ $article->author->name }}
{{ route('profile.show', $article->author->id) }}
@endif
@if($article->category)
@endif
@if($article->featured_image)
@endif
@endforeach