@extends('seller.layouts.app') @section('panel_content')
{{ translate('Customer Inqueries') }}
@if (count($inquiries) > 0)
@foreach ($inquiries as $notification) @endforeach
{{ translate('Customer Name')}} {{ translate('Customer location')}} {{ translate('Customer Phone')}} {{ translate('Customer Email')}} {{ translate('Product Name')}} {{ translate('Seller Count')}}
{{ isset($notification->buyer_name) ? $notification->buyer_name : '' }} {{ $notification->city, $notification->state }}, {{ $notification->district }}, {{ $notification->state }}, {{ $notification->pincode }} {{ $notification->buyer_phone }} {{ $notification->buyer_email }} {{isset($notification->product_name) ? $notification->product_name : '' }}" @php $latitude=isset($notification->latitude) ? $notification->latitude : '1.0000'; $longitude=isset($notification->longitude) ? $notification->longitude : '1.0000'; $sellerCount=getSellerCount($latitude,$longitude); @endphp
{{ $inquiries->links() }}
@endif
@endsection @section('modal') @endsection @section('script') @endsection