@extends('layouts.front') @section('content')
@lang('Contact Vendor')
vendor img
  • @lang('Store Name:') {{ $vendor->shop_name }}
  • @lang('Owner Name:') {{ $vendor->owner_name }}
  • @lang('Phone:') {{ $vendor->shop_number }}
  • @lang('Email:') {{ $vendor->email }}
  • @lang('Address:') {{ $vendor->shop_address }}
@if (!auth()->id() == $vendor->id) @if (auth()->check())
@csrf
@else @endif @endif
@lang('Price Range')
@lang('Clear Filter')
@php if (request()->input('view_check') == null || request()->input('view_check') == 'grid-view') { $view = 'grid-view'; } else { $view = 'list-view'; } @endphp
@lang('Total Products Found:') {{ $vprods->count() }}
@lang('Sort by:')
@if ($vprods->count() == 0)
@lang('No Product Found')
@else
@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
@endsection @section('script') @endsection