mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
2.4 KiB
PHTML
59 lines
2.4 KiB
PHTML
<section class='PostSidebar content'>
|
|
<div class="{{gfx()['container']}}">
|
|
<dov class="row">
|
|
@if(!getSetting($data->area->name.'_'.$data->part.'_invert'))
|
|
<div class="col-lg-3 p-0">
|
|
@include('segments.post.PostSidebar.inc.sidebar')
|
|
</div>
|
|
@endif
|
|
<div class="col-lg-9 p-0">
|
|
<div class="py-2 px-4">
|
|
<h1>
|
|
{{$post->title}}
|
|
<span class="float-end text-muted">
|
|
Time spend: {{$post->spendTime()}}
|
|
</span>
|
|
</h1>
|
|
<img src="{{$post->orgUrl()}}" alt="" class="img-fluid">
|
|
<p class="text-muted my-3">
|
|
{{$post->subtitle}}
|
|
</p>
|
|
<div class="row text-center">
|
|
<div class="col-md">
|
|
<i class="ri-calendar-line"></i>
|
|
{{$post->created_at->ldate('Y/m/d H:i')}}
|
|
</div>
|
|
<div class="col-md">
|
|
<i class="ri-message-line"></i>
|
|
{{number_format($post->approvedComments()->count())}}
|
|
</div>
|
|
<div class="col-md">
|
|
<i class="ri-eye-line"></i>
|
|
{{number_format($post->view)}}
|
|
</div>
|
|
@if($post->tags()->count() > 0)
|
|
<div class="col-md-6">
|
|
{{__("Tags")}}:
|
|
@foreach($post->tags as $tag)
|
|
<a href="{{route('client.tag',$tag->slug)}}" class="tag me-2">
|
|
<i class="ri-price-tag-line"></i>
|
|
{{$tag->name}}
|
|
</a>
|
|
@endforeach
|
|
</div>
|
|
@endif
|
|
</div>
|
|
<hr>
|
|
{!! $post->body !!}
|
|
</div>
|
|
|
|
</div>
|
|
@if(getSetting($data->area->name.'_'.$data->part.'_invert'))
|
|
<div class="col-lg-3 p-0">
|
|
@include('segments.post.PostSidebar.inc.sidebar')
|
|
</div>
|
|
@endif
|
|
</dov>
|
|
</div>
|
|
</section>
|