PATH:
home
/
lab2454c
/
sportsnovate.com
/
backups
/
core
/
resources
/
views
/
templates
/
basic
@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>EXPLORE OUR PRODUCTS</h2> </div> </div> </div> <div class="explore__product"> <div class="explore__product__graphic"> <div class="explore__product__graphic__inner"> <h2>products</h2> </div> </div> <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($allProducts 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 class="price__wrapp"> <div class="price__text"> <h4><span>{{$general->cur_sym}}</span>{{showAmount($product->amount)}}</h4> </div> <div class="price__text__rgt"> <h4><span><img src="{{asset($activeTemplateTrue.'customV1/assets/pro-arrow.png')}}"></span> {{btcRate($product->amount)}}</h4> </div> </div> <div class="purchase__now__btn"> <a href="{{route('product.detail', $product->id)}}" class="purchase__btn">purchase now</a> </div> </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($allProducts 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> @isset($packs) <div class="product__wrapp"> <div class="container"> <h3 class="py-5" style="font-size:55px;">OUR PACKS</h3> <div class="product__user__slider__wrapp"> <div class="slider__inner"> <div class="theme_carousel owl-theme owl-carousel" data-options='{"loop":false, "margin": 25, "autoheight":true, "lazyload":true, "nav": true, "dots": true, "autoplay": true, "autoplayTimeout": 6000, "smartSpeed": 300, "responsive":{ "0" :{ "items": "1" }, "575" :{ "items" : "1" } , "576" :{ "items" : "1" } , "767" :{ "items" : "2" } , "768" :{ "items" : "2" } , "992" :{ "items" : "2" } , "1024":{ "items" : "3" }}}'> @forelse($packs as $product) @php $productImage = $product->productImages->first(); //dd($productImage); if (isset($productImage)) { $imageName = explode('.', $productImage->file); $ext = $imageName[count($imageName) - 1]; } @endphp <div class="slide-item"> <div class="slider__product__info"> <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="slider__info"> <h4> <a href="{{route('product.detail', $product->id)}}"> {{__(isset($product->title) ? str_limit($product->title, 30) : 'Sothebry FAME – Baseball Moments')}} </a> </h4> <p><a href="#">{{ isset($product->category->name) ? $product->category->name : '' }}</a></p> <div class="price__wrapp"> <div class="price__text"> <h4><span>{{$general->cur_sym}}</span>{{showAmount($product->amount)}}</h4> </div> <div class="price__text__rgt"> <h4><span><img src="{{asset($activeTemplateTrue.'customV1/assets/pro-arrow.png')}}"> </span>{{btcRate($product->amount)}}</h4> </div> </div> <div class="purchase__now__btn mr__bottom"> <a href="{{route('product.detail', $product->id)}}" class="purchase__btn">purchase now</a> </div> </div> </div> </div> @empty <div class="mt-4"> <h5>No Packs Listed</h5> </div> @endforelse </div> </div> </div> </div> </div> @endisset </div> @endsection
[+]
sections
[-] profile.blade.php
[edit]
[-] sections.json
[edit]
[+]
..
[-] contact.blade.php
[edit]
[-] pages.blade.php
[edit]
[+]
layouts
[-] blog_details.blade.php
[edit]
[+]
homeSections
[-] blog.blade.php
[edit]
[-] home.blade.php
[edit]
[-] product_detail.blade.php
[edit]
[-] blog_sidebar.blade.php
[edit]
[+]
partials
[-] ticket_view.blade.php
[edit]
[-] menu.blade.php
[edit]
[-] preview.jpg
[edit]
[+]
user
[-] product.blade.php
[edit]
[+]
productDetailSubpart
[+]
fashionNft
[+]
customPages