@php
if (request()->input('view_check') == null || request()->input('view_check') == 'grid-view') {
$view = 'grid-view';
} else {
$view = 'list-view';
}
@endphp
@if ($vprods->count() == 0)
@foreach ($vprods as $product)
@include('includes.frontend.list_view_product')
@endforeach
@foreach ($vprods as $product)
@include('includes.frontend.home_product', [
'class' => 'col-sm-6 col-md-6 col-xl-4',
])
@endforeach
{{ $vprods->links('includes.frontend.pagination') }}
@endif