@if($data->count()>0)
@foreach ( $data as $product)
@if(\App::getLocale()=='en')
@php
$productname=$product->title_en;
$category=@$categories[0]->title_en;
@endphp
@else
@php
$productname=$product->title;
$category=@$categories[0]->title;
@endphp
@endif
@endforeach
@else
{{ __('admin.web.No products to show') }}
@endif