@extends('admin.layout') @section('content')

{{ translate('Fav report') }}

@if (Session::get('tenant_subscribtion_data')['reports']['belongs_to_subscribtion'] == true && (Session::get('tenant_subscribtion_data')['reports']['value'] == 'unlimt' || Session::get('tenant_subscribtion_data')['reports']['quantity'] >= 3))
@foreach ($products as $key => $product) @if ($product->favorite != null) @endif @endforeach
# {{ translate('SKU') }} {{ translate('Product name') }} {{ translate('Number of fav') }}
{{ $key + 1 + ($products->currentPage() - 1) * $products->perPage() }} {{ $product->sku }} {{ $product->getTranslation('title') }} {{ $product->favorite->count() }}
{{ $products->links() }}
@else

{{ translate('You need to upgrade to use this feature.') }}

{{ translate('Please Upgrade to use this feature.') }}


{{ translate('Upgrade now') }}
@endif
@endsection @section('script') @endsection