PATH:
home
/
lab2454c
/
.trash
/
core
/
resources
/
views
/
templates
/
basic
/
customPages
@extends($activeTemplate.'layouts.frontend') @section('content') <div class="body__containt__main body__containt__main__inner"> <div class="decade__moments"> <div class="container"> <h2>Decade Moments in Sports. To Remind Us These Greatness</h2> <div class="nav__tab"> <ul> <li class="active"><a href="#">Hot Moments Displays</a></li> {{-- <li><a href="#">Relatable Sport Projects</a></li> <li><a href="#">Special Relatable Releases</a></li> --}} </ul> </div> <div class="features__wrapp"> <div class="row"> @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="col-xl-3 clo-lg-3 col-md-6 mr__top"> <div class="features__card"> <div class="image__box"> <a href="{{route('product.detail', $product->id)}}"> @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 </a> </div> <div class="content__wrapp"> <h3>{{ isset($product->time_duration) ? date('M, y', strtotime($product->time_duration)) : '' }}</h3> <h4>{{__(isset($product->title) ? str_limit($product->title, 30) : 'Sothebry FAME – Baseball Moments')}}</h4> <p>{{__(isset($product->sub_title) ? str_limit($product->sub_title, 80) : 'Sothebry FAME – Baseball Moments')}}</p> </div> <div class="overlay__wrapp"> <a href="#" data-toggle="modal" data-bs-toggle="modal" data-bs-target="#exampleModal{{ $product->id }}"> <i class="ico__box"> </i> </a> </div> </div> <div class="modal fade modal__main" id="exampleModal{{ $product->id }}" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true"> <div class="modal-dialog modal__dialog"> <div class="modal-content modal__content"> <div class="modal-header modal__header"> <button type="button" class="btn-close close__btn" data-bs-dismiss="modal" aria-label="Close"><img src="assets/cancel.svg" alt=""></button> </div> <div class="modal-body modal__body"> <div class="row m-0"> <div class="col-xl-6 clo-lg-6 col-md-6 p-0"> <div class="image__box"> <a href="{{route('product.detail', $product->id)}}"> @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 </a> </div> </div> <div class="col-xl-6 clo-lg-6 col-md-6 p-0"> <div class="content__wrapp"> <div class="content__wrapp__inner"> <h3>{{ isset($product->time_duration) ? date('M, y', strtotime($product->time_duration)) : '' }}</h3> <h4>{{__(isset($product->title) ? str_limit($product->title, 30) : 'Sothebry FAME – Baseball Moments')}}</h4> <p>{{__(isset($product->sub_title) ? str_limit($product->sub_title, 180) : 'Sothebry FAME – Baseball Moments')}}</p> </div> </div> </div> </div> </div> </div> </div> </div> </div> @empty <h4>No Featured Products Listed</h4> @endforelse </div> </div> </div> </div> @include('templates.basic.homeSections.secondSection') </div> @endsection
[-] faq.blade.php
[edit]
[+]
..
[-] dynamicPage.blade.php
[edit]
[-] about-us.blade.php
[edit]