PATH:
home
/
lab2454c
/
.trash
/
core
/
resources
/
views
/
templates
/
basic
/
homeSections
@php $productContent = App\Models\ProductContent::first(); $packProducts = App\Models\Product::where('status', 1) ->where('package', 1)->with('productImages','category') // ->whereDate('time_duration','>', Carbon\Carbon::now()->toDateTimeString()) ->limit(getPaginate()) ->inRandomOrder()->orderBy('id', 'DESC')->with('order')->take(3)->get(); @endphp <div class="notable__drops"> <div class="container"> <h2>{{ isset($productContent) ? $productContent->title : '' }}</h2> <p>{{ isset($productContent) ? $productContent->description : '' }}</p> <div class="notable__drops__inner"> <div class="row"> @forelse($packProducts as $packProduct) @php $productImage = $packProduct->productImages->first(); 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="notable__card"> <a href="{{route('product.detail', $packProduct->id)}}"> <div class="notable__card__wrapp"> <div class="notable__card__content"> <h3>{{ $packProduct->title }}</h3> <p>{{ $packProduct->sub_title }}</p> </div> <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 <img src="{{ getImage(imagePath()['product']['path'].'/'.$productImage->file,imagePath()['product']['size'])}}" alt="@lang('product')" /> @endif @endif </div> <div class="notable__card__bottom"> <h2> {{ $packProduct->category->name }} </h2> </div> </div> </a> </div> </div> @empty <p>No Package Listed</p> @endforelse </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]