Viewing file: show.blade.php (11.28 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('master.front') @section('title') {{ __('Blog Details') }} @endsection @php if ($post->meta_keywords) { $keyword = str_replace(['value', '{', '}', '[', ']', ':', "\""], '', $post->meta_keywords); } else { $keyword = $post->title; } @endphp @section('meta') <meta name="title" content="{{ $post->title }}"> <meta name="keywords" content="{{ $keyword }}"> <meta name="description" content="{{ $post->meta_descriptions }}">
<meta name="twitter:title" content="{{ $post->title }}"> <meta name="twitter:image" content="{{ asset('assets/images/' . json_decode($post->photo, true)[0]) }}"> <meta name="twitter:description" content="{{ $post->meta_descriptions }}">
<meta name="og:title" content="{{ $post->title }}"> <meta name="og:image" content="{{ asset('assets/images/' . json_decode($post->photo, true)[0]) }}"> <meta name="og:description" content="{{ $post->meta_descriptions }}">
@endsection
@section('styleplugins') <style> .post-thumb { display: block; overflow: hidden; height: 300px; } </style> @endsection
@section('content') <!-- Page Content--> <div class="container mt-5 padding-bottom-3x mb-1"> <div class="row"> <!-- Content--> <div class="col-xl-9 col-lg-8 order-lg-2"> <div class="card blog-details-box"> <!-- Gallery--> <div class="blog-details-slider owl-carousel">
@foreach (json_decode($post->photo, true) as $photo) <img src="{{ asset('assets/images/' . $photo) }}" alt="Image"> @endforeach </div> <div class="blog-details-main-content"> <h4 class="pt-4 b-d-title">{{ $post->title }}</h4> <ul class="post-meta mb-4"> <li><i class="icon-user"></i><a href="javascript:;}">{{ __('Admin') }}</a></li> <li><i class="icon-tag"></i><a href="{{ route('front.blog') . '?category=' . $post->category->slug }}">{{ $post->category->name }}</a> </li> <li><i class="icon-clock"></i><a href="javascript:;">{{ date('jS F, Y', strtotime($post->created_at)) }}</a></li> </ul> <div> {!! $post->details !!} </div>
<!-- Post Tags + Share--> <div class="d-flex flex-wrap justify-content-between align-items-center pt-3 pb-4">
@if ($post->tags) <div class="pb-2"> {{ __('Tags :') }} @foreach (explode(',', $post->tags) as $tag) @if ($loop->last) <a class="text-sm text-muted navi-link" href="{{ route('front.blog') . '?tag=' . $tag }}">{{ $tag }}</a> @else <a class="text-sm text-muted navi-link" href="{{ route('front.blog') . '?tag=' . $tag }}">{{ $tag }}</a>, @endif @endforeach </div> @endif <div class="d-flex align-items-center"> <span class="text-muted mr-1">{{ __('Share') }}: </span> <div class="d-inline-block a2a_kit"> <a class="facebook a2a_button_facebook" href=""> <span><i class="fab fa-facebook-f"></i></span> </a> <a class="twitter a2a_button_twitter" href=""> <span><i class="fab fa-twitter"></i></span> </a> <a class="linkedin a2a_button_linkedin" href=""> <span><i class="fab fa-linkedin-in"></i></span> </a> <a class="pinterest a2a_button_pinterest" href=""> <span><i class="fab fa-pinterest"></i></span> </a> </div> <script async src="https://static.addtoany.com/menu/page.js"></script> </div> </div> </div> </div>
@if ($setting->is_disqus == 1) <div class="card mb-30"> <div class="card-body"> <div id="disqus_thread"></div> <script> (function() { // DON'T EDIT BELOW THIS LINE var d = document, s = d.createElement('script'); s.src = '{{ $setting->disqus }}'; s.setAttribute('data-timestamp', +new Date()); (d.head || d.body).appendChild(s); })(); </script> </div> </div> @endif @if ($post->category->posts->where('id', '!=', $post->id)->count() > 0) <div class="row"> <div class="col-lg-12 pb-2"> <div class="section-title"> <h2 class="h3">{{ __('You May Also Like') }}</h2> </div> </div> </div> <!-- Relevant Posts--> <div class="resent-blog-slider owl-carousel">
@foreach ($post->category->posts->where('id', '!=', $post->id) as $like_post) <div class="widget widget-featured-posts"> <div class="entry"> <div class="entry-thumb"> @php $photos = json_decode($like_post->photo, true); $firstPhoto = !empty($photos) ? $photos[array_key_first($photos)] : null; @endphp
<a href="{{ route('front.blog.details', $like_post->slug) }}"> <img src="{{ asset('assets/images/' . $firstPhoto )}}" alt="Post"> </a> </div>
<div class="entry-content"> <h4 class="entry-title"><a href="{{ route('front.blog.details', $like_post->slug) }}"> {{ Str::limit($like_post->title, 75) }} </a></h4><span class="entry-meta">{{ __('by') }} {{ __('Admin') }}</span> </div> </div> </div> @endforeach </div> @endif
</div> <!-- Sidebar --> <div class="col-xl-3 col-lg-4 order-lg-1"> <div class="sidebar-toggle position-left"><i class="icon-filter"></i></div> <aside class="sidebar sidebar-offcanvas position-left"><span class="sidebar-close"><i class="icon-x"></i></span> <!-- Widget Search--> <section class="widget mb-30"> <form action="{{ route('front.blog') }}" class="input-group form-group" method="get"><span class="input-group-btn"> <button type="submit"><i class="icon-search"></i></button></span> <input class="form-control" name="search" type="text" placeholder="{{ __('Search blog') }}"> </form> </section> <!-- Widget Categories--> <section class="widget widget-categories card rounded p-4 mt-n3 mb-30"> <h3 class="widget-title">{{ __('Blog Categories') }}</h3> <ul> @foreach ($categories as $category) <li><a href="{{ route('front.blog') . '?category=' . $category->slug }}">{{ $category->name }}</a><span>{{ $category->posts_count }}</span> </li> @endforeach
</ul> </section> <!-- Widget Featured Posts--> <section class="widget widget-featured-posts card rounded p-4 mb-30"> <h3 class="widget-title">{{ __('Most Recent Added Posts') }}</h3> @foreach ($posts as $recent) <div class="entry"> @php $recent_photos = json_decode($recent->photo, true); $recent_first_photo = !empty($recent_photos) ? $recent_photos[array_key_first($recent_photos)] : null; @endphp <div class="entry-thumb"><a href="{{ route('front.blog.details', $recent->slug) }}"><img src="{{ asset('assets/images/' .$recent_first_photo )}}" alt="Post"></a></div> <div class="entry-content"> <h4 class="entry-title"><a href="{{ route('front.blog.details', $recent->slug) }}"> {{ Str::limit($recent->title, 55) }}
</a></h4><span class="entry-meta">{{ __('by') }} {{ __('Admin') }}</span> </div> </div> @endforeach </section> <!-- Widget Tags--> <section class="widget widget-featured-posts card rounded p-4"> <h3 class="widget-title">{{ __('Popular Tags') }}</h3> <div> @foreach ($tags as $tag) <a class="tag" href="{{ route('front.blog') . '?tag=' . $tag }}">{{ $tag }}</a> @endforeach </div> </section> </aside> </div> </div> </div> @endsection
|