@if ($page->image)
@endif
@php
$socialLink = new \SocialLinks\Page([
'url' => route('pages.show', $page->slug),
'title' => $page->title,
'text' => $page->description,
'image' => $page->image,
// 'icon' => $settings['icon'] ?? '',
// 'twitterUser' => '@twitterUser',
]);
@endphp
{{ $page->title }}
{{--
{{ str(
__('Posted :at by :user', [
'at' => $page->created_at->diffForHumans(),
'user' =>
'' .
$page->user->displayName .
'',
]),
)->toHtmlString() }}
--}}
{{ $page->description }}
{{ parse_markdown($page->body) }}