/home/techb158/immovalet.com/platform/themes/shopwise/views
NameSizeModeActions
ecommerce/-0755rm
templates/-0755rm
404.blade.php24480644editdlrm
500.blade.php10510644editdlrm
503.blade.php9840644editdlrm
category.blade.php1590644editdlrm
index.blade.php18630644editdlrm
loop.blade.php650644editdlrm
page.blade.php4480644editdlrm
post.blade.php58310644editdlrm
search.blade.php2040644editdlrm
tag.blade.php1540644editdlrm
Edit: /home/techb158/immovalet.com/platform/themes/shopwise/views/post.blade.php (5831B)
@php Theme::set('pageName', __('Blog')) @endphp

{{ $post->name }}

  • {{ $post->created_at->translatedFormat('M d, Y') }}
  • @if (!$post->categories->isEmpty()) @foreach($post->categories as $category) {{ $category->name }}@if (!$loop->last),@endif @endforeach @endif
  • {{ number_format($post->views) }} {{ __('Views') }}
{{ $post->name }}
{!! clean($post->content, 'youtube') !!}
{!! apply_filters(BASE_FILTER_PUBLIC_COMMENT_AREA, theme_option('facebook_comment_enabled_in_post', 'yes') == 'yes' ? Theme::partial('comments') : null) !!}
@php $relatedPosts = get_related_posts($post->id, 2); @endphp @if ($relatedPosts->count())
{{ __('Related posts') }}
@foreach ($relatedPosts as $relatedItem)
{{ $relatedItem->name }}
{{ $relatedItem->name }}
  • {{ $relatedItem->created_at->translatedFormat('M d, Y') }}
  • {{ number_format($relatedItem->views) }} {{ __('Views') }}

{{ Str::limit($relatedItem->description, 110) }}

@endforeach
@endif