PATH:
home
/
lab2454c
/
.trash
/
core
/
resources
/
views
/
templates
/
basic
/
homeSections
@php $latestProducts = App\Models\Product::where('status', 1) ->where('package', 0)->with('productImages','category') // ->whereDate('time_duration','>', Carbon\Carbon::now()->toDateTimeString()) ->limit(getPaginate()) ->inRandomOrder()->orderBy('id', 'DESC')->with('order')->take(3)->get(); @endphp <div class="product__wrapp"> <div class="container"> <h2>Explore our <span>products</span></h2> <div class="product__wrapp__inner"> <div class="row"> @foreach($latestProducts as $latestProduct) @php $productImage = $latestProduct->productImages->first(); //dd($productImage); if (isset($productImage)) { $imageName = explode('.', $productImage->file); $ext = $imageName[count($imageName) - 1]; } @endphp <div class="col-xl-4 col-lg-4 col-md-4 mr__top"> <div class="product__card"> <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', $latestProduct->id)}}"> <img src="{{ getImage(imagePath()['product']['path'].'/'.$productImage->file,imagePath()['product']['size'])}}" alt="@lang('product')" /> </a> @endif @endif </div> <div class="product__content"> <div class="product__title"> <h3> <a href="{{route('product.detail', $latestProduct->id)}}"> {{__(isset($latestProduct->title) ? str_limit($latestProduct->title, 30) : 'Sothebry FAME – Baseball Moments')}} </a> </h3> </div> <div class="product__category"> <p><a href="#">{{ isset($latestProduct->category->name) ? $latestProduct->category->name : '' }}</a></p> </div> <div class="product__card__bottom"> <div class="product__price"> {{$general->cur_sym}}{{showAmount($latestProduct->amount)}} <br> <div><i class="lab la-ethereum"></i>{{btcRate($latestProduct->amount)}}</div> </div> <div class="add__to__cart"><a href="{{route('product.detail', $latestProduct->id)}}">Purchase Now</a></div> </div> </div> </div> </div> @endforeach </div> </div> </div> </div>
[-] smallBanner.blade.php
[edit]
[-] aboutSection.blade.php
[edit]
[-] brilliantMoments.blade.php
[edit]
[+]
..
[-] featuredProduct.blade.php
[edit]
[-] collectible.blade.php
[edit]
[-] blog.blade.php
[edit]
[-] secondSection.blade.php
[edit]
[-] sportMoments.blade.php
[edit]
[-] productSection.blade.php
[edit]
[-] banner.blade.php
[edit]