@extends('layouts.front') @section('content')

Store Name

{{ $vendor->shop_name }}

{{-- Info Area Start --}}
@foreach($services->chunk(4) as $chunk)
@foreach($chunk as $service)

{{ $service->title }}

{!! $service->details !!}

@endforeach
@endforeach
{{-- Info Area End --}}
@include('includes.catalog')
@if(count($vprods) > 0) @include('includes.filter')
@foreach($vprods as $prod) @include('includes.product.product') @endforeach
@if(isset($min) || isset($max))
{!! $vprods->appends(['min' => $min, 'max' => $max])->links() !!}
@elseif(!empty($sort))
{!! $vprods->appends(['sort' => $sort])->links() !!}
@else
{!! $vprods->links() !!}
@endif
@else

{{ $langg->lang60 }}

@endif
@if(Auth::guard('web')->check()) {{-- MESSAGE VENDOR MODAL --}}
{{-- MESSAGE VENDOR MODAL ENDS --}} @endif @endsection @section('scripts') @endsection