PATH:
home
/
lab2454c
/
sothebry.softkinesis.com
/
backups
/
core
/
resources
/
views
/
templates
/
basic
/
customPages
@extends($activeTemplate.'layouts.frontend') @section('content') <div class="body__containt__main body__containt__main__inner"> <div class="common__main explore__common__main explore__common__main__single"> <div class="container"> <div class="row"> <h2>Decade Moments in Sports. To Remind Us These Greatness</h2> </div> </div> </div> <div class="explore__product"> <div class="explore__product__inner"> <div class="container"> <div class="product__wrapp"> <div class="swiper-slider-outer"> <div class="swiper-container-wrapper"> <div class="swiper-container gallery-top"> <div class="swiper-wrapper"> @forelse($featuredProducts as $product) @php $productImage = $product->productImages->first(); //dd($productImage); if (isset($productImage)) { $imageName = explode('.', $productImage->file); $ext = $imageName[count($imageName) - 1]; } @endphp <div class="swiper-slide"> <div class="swiper-product-info"> <div class="pro-date"> {{showDateTime($product->created_at, 'j M Y')}} </div> <div class="product-title"> <h2>{{__(isset($product->title) ? str_limit($product->title, 30) : 'Sothebry FAME – Baseball Moments')}}</h2> </div> <h3 class="text-start">{{ isset($product->category->name) ? $product->category->name : '' }}</h3> <p> {{__($product->sub_title)}} </p> </div> <div class="swiper-slider-image"> <div class="image__box"> @if(isset($productImage)) @if($ext == 'mp4' || $ext == 'mov') <video width="300" height="250" controls> <source src="{{ asset('assets/images/product/'.$productImage->file) }}" type="video/mp4"> Your browser does not support the video tag. </video> @else <a href="{{route('product.detail', $product->id)}}"> <img src="{{ getImage(imagePath()['product']['path'].'/'.$productImage->file,imagePath()['product']['size'])}}" alt="@lang('product')" /> </a> @endif @endif </div> </div> </div> @empty <div class="mt-4"> <h5>No Product Listed</h5> </div> @endforelse </div> </div> <div class="swiper-container gallery-thumbs"> <div class="swiper-wrapper"> @foreach($featuredProducts as $product) @php $productImage = $product->productImages->first(); if (isset($productImage)) { $imageName = explode('.', $productImage->file); $ext = $imageName[count($imageName) - 1]; } @endphp <div class="swiper-slide"> <div class="image__box"> @if(isset($productImage)) @if($ext == 'mp4' || $ext == 'mov') <img src="{{ asset('assets/images/default.png') }}" alt="@lang('Video')" /> @else <img src="{{ getImage(imagePath()['product']['path'].'/'.$productImage->file,imagePath()['product']['size'])}}" alt="@lang('product')" /> @endif @endif </div> </div> @endforeach </div> </div> </div> </div> <div class="swiper__button__wrapper"> <div class="swiper-button-next"> </div> <div class="swiper-button-prev"> </div> </div> </div> </div> </div> </div> <div style="margin-top:6rem"> @include('templates.basic.homeSections.secondSection') </div> </div> @endsection
[-] faq.blade.php
[edit]
[+]
..
[-] dynamicPage.blade.php
[edit]
[-] about-us.blade.php
[edit]