Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelpetscentercampinas.meumercado.app
/
resources
/
views
/
admin-views
/
partials
/
Editing: _most-rated-products.blade.php
<!-- Header --> <div class="card-header"> <h5 class="card-header-title"> <i class="tio-star"></i> {{\App\CentralLogics\translate('most_rated_products')}} </h5> <i class="tio-gift" style="font-size: 45px"></i> </div> <!-- End Header --> <!-- Body --> <div class="card-body"> <div class="row"> <div class="col-12"> <table class="table"> <tbody> @foreach($most_rated_products as $key=>$item) @php($product=\App\Model\Product::find($item['product_id'])) @if(isset($product)) <tr onclick="location.href='{{route('admin.product.view',[$item['product_id']])}}'" style="cursor: pointer"> <td scope="row"> <img height="35" style="border-radius: 5px" src="{{asset('storage/app/public/product')}}/{{ json_decode($product['image'])[0] }}" onerror="this.src='{{asset('public/assets/admin/img/160x160/img2.jpg')}}'" alt="{{$product->name}} image"> <span class="ml-2"> {{isset($product)?substr($product->name,0,30) . (strlen($product->name)>20?'...':''):'not exists'}} </span> </td> <td> <span style="font-size: 18px"> {{round($item['ratings_average'],2)}} <i style="color: gold" class="tio-star"></i> </span> </td> <td> <span style="font-size: 18px"> {{$item['total']}} <i class="tio-users-switch"></i> </span> </td> </tr> @endif @endforeach </tbody> </table> </div> </div> </div> <!-- End Body -->
Save
Cancel