@extends('layouts.app') @section('content')
{{ translate('Sort by Category') }}:

{{ translate('Product Wish Report') }}

@foreach ($products as $key => $product) @if($product->wishlists != null) @endif @endforeach
{{ translate('Product Name') }} {{ translate('Number of Wish') }}
{{ __($product->name) }} {{ $product->wishlists->count() }}
@endsection