PATH:
home
/
lab2454c
/
.trash
/
core
/
resources
/
views
/
templates
/
basic
@extends($activeTemplate . 'layouts.frontend') @section('content') <div class="body__containt__main body__containt__main__inner"> <div class="product__wrapp"> <div class="container"> <form method="GET" action="{{route('product.filter')}}"> <div class="row"> <div class="col-md-4"></div> <div class="col-md-4"></div> <div class="col-md-4 mb-4"> <div class="input-group input--group filter-select-item flex-grow-1 pt-3"> <input type="text" class="form-control form--control-2 bg--body" name="search" value="{{@$search}}" placeholder="@lang('Search Here')" required> <button class="input-group-text btn--base cmn--btn"> <i class="las la-search"></i> </button> <button type="button" class="input-group-text btn--base cmn--btn" style="margin-left: 6px;" onclick="javascript:window.location.href='{{ route('products') }}';"> <i class="las la-times"></i> Clear </button> </div> </div> </div> </form> <!--<div class="d-flex justify-content-between">--> <!-- <div class="d-flex">--> <!-- <form method="GET" action="{{route('product.filter')}}">--> <!-- <div class="input-group input--group filter-select-item flex-grow-1">--> <!-- <input type="text" class="form-control form--control-2 bg--body" name="search" value="{{@$search}}" placeholder="@lang('Search Here')" required>--> <!-- <button class="input-group-text btn--base cmn--btn">--> <!-- <i class="las la-search"></i>--> <!-- </button>--> <!-- <button type="button" class="input-group-text btn--base cmn--btn" style="margin-left: 6px;" onclick="javascript:window.location.href='{{ route('products') }}';">--> <!-- <i class="las la-times"></i> Clear </button>--> <!-- </div>--> <!-- </form>--> <!-- </div>--> <!--</div>--> <h2> @if(isset($search)) search <span>results</span> @else our <span>products</span> @endif </h2> <div class="product__wrapp__inner"> <div class="row"> @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="col-xl-4 col-lg-4 col-md-4 mr__top"> <div class="product__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="product__content"> <div class="product__title"> <h3><a href="{{route('product.detail', $product->id)}}"> {{__(isset($product->title) ? str_limit($product->title, 30) : 'Sothebry FAME – Baseball Moments')}} </a></h3> </div> <div class="product__category"> <p><a href="#">{{ isset($product->category->name) ? $product->category->name : '' }}</a></p> </div> <div class="product__card__bottom"> <div class="product__price">{{$general->cur_sym}}{{showAmount($product->amount)}} <br> <div><i class="lab la-ethereum"></i>{{btcRate($product->amount)}}</div></div> <div class="add__to__cart"><a href="{{route('product.detail', $product->id)}}">Purchase</a></div> </div> </div> </div> </div> @empty <div class="mt-4"> <h5>No Product Listed</h5> </div> @endforelse {{$allProducts->links('pagination::default')}} </div> </div> </div> </div> @isset($packs) <div class="product__wrapp"> <div class="container"> <h2>our <span>packs</span></h2> <div class="product__wrapp__inner"> <div class="row"> @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="col-xl-4 col-lg-4 col-md-4 mr__top"> <div class="product__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="product__content"> <div class="product__title"> <h3><a href="{{route('product.detail', $product->id)}}"> {{__(isset($product->title) ? str_limit($product->title, 30) : 'Sothebry FAME – Baseball Moments')}} </a></h3> </div> <div class="product__category"> <p><a href="#">{{ isset($product->category->name) ? $product->category->name : '' }}</a></p> </div> <div class="product__card__bottom"> <div class="product__price"> {{$general->cur_sym}}{{showAmount($product->amount)}} <br> <div>{{-- <i class="lab la-bitcoin"></i> --}}<i class="lab la-ethereum"></i>{{btcRate($product->amount)}}</div> </div> <div class="add__to__cart"><a href="{{route('product.detail', $product->id)}}">Purchase</a></div> </div> </div> </div> </div> @empty <div class="mt-4"> <h5>No Packs Listed</h5> </div> @endforelse {{$packs->links('pagination::default')}} </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