/
home
/
sjslayjy
/
public_html
/
theweavenest
/
resources
/
views
/
front
/
Upload File
HOME
@extends('front.layout_alt') @section('page_title', 'product_cat') @section('content') <style> .post-thumb { display: flex; justify-content: center; align-items: center; height: 400px; /* Set a fixed height for the image container */ overflow: hidden; /* Hide any overflow */ border: 2px solid #ddd; /* Add a border around the image container */ padding: 10px; /* Add padding inside the border */ } .post-thumb img { width: 100%; height: 100%; object-fit: cover; /* Ensures the image covers the container without distortion */ } .post { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 20px; } .post-title { margin-top: 15px; } .post-meta ul { list-style: none; padding: 0; } .post-meta ul li { display: inline; margin-right: 10px; } .post-content { margin-top: 20px; } .post-social-share { text-align: center; margin-top: 20px; } .social-media-icons ul { list-style: none; padding: 0; } .social-media-icons ul li { display: inline; margin: 0 10px; } .shop-now { text-align: center; font-weight: bold; margin-top: 10px; color: white; background-color: salmon; padding: 5px 10px; display: inline-block; position: relative; top: -30px; } </style> <section class="page-header"> <div class="container"> <div class="row"> <div class="col-md-12"> <div class="content"> <h1 class="page-name">Blog</h1> <ol class="breadcrumb"> <li><a href="index.html">Home</a></li> <li class="active">blog</li> </ol> </div> </div> </div> </div> </section> <section class="page-wrapper"> <div class="container"> <div class="row"> <div class="col-md-12"> <div class="post post-single"> <div class="post-thumb"> <img class="img-responsive" src="{{ asset('storage/media/category/' . $post->image) }}" alt="{{ $post->title }}"> </div> <div class="post-meta"> <ul> <li><i class="tf-ion-ios-calendar"></i> 20, MAR 2017</li> <li><i class="tf-ion-android-person"></i> POSTED BY ADMIN</li> <li><a href="#!"><i class="tf-ion-ios-pricetags"></i> LIFESTYLE</a>,<a href="#!"> TRAVEL</a>, <a href="#!">FASHION</a></li> <li><a href="#!"><i class="tf-ion-chatbubbles"></i> 4 COMMENTS</a></li> </ul> </div> <div class="post-content post-excerpt"> <p>{{ $post->description }}</p> <!-- Additional post content goes here --> </div> </div> </div> </div> </div> </section> <div class="post-social-share"> <h3 class="post-sub-heading">Share this post</h3> <div class="social-media-icons"> <ul> <li><a class="facebook" href="https://themefisher.com/"><i class="tf-ion-social-facebook"></i></a></li> <li><a class="twitter" href="https://themefisher.com/"><i class="tf-ion-social-twitter"></i></a></li> <li><a class="dribbble" href="https://themefisher.com/"><i class="tf-ion-social-dribbble-outline"></i></a></li> <li><a class="instagram" href="https://themefisher.com/"><i class="tf-ion-social-instagram"></i></a></li> <li><a class="googleplus" href="https://themefisher.com/"><i class="tf-ion-social-googleplus"></i></a></li> </ul> </div> </div> @endsection