@extends('backend.layouts.app') @section('content')

Survey List

All Surveys
Selected Survey (0)
@forelse ($surveyListing as $index => $survey) @empty @endforelse
S.No. Company Name Name Email Phone Company Type Industry Annual Revenue No. of Employees R&D Certification Production Capacity Warehouse Volume Seeking Partnerships Hear About Us Platform Usability Quality Supplier Information Product Range Communication Live Chat Transaction Customer Support Comments Message Status Created On Updated On Action
{{ $index + 1 + ($surveyListing->currentPage() - 1) * $surveyListing->perPage() }} {{ $survey->company_name ?? 'N/A' }} {{ $survey->full_name ?? 'N/A' }} {{ $survey->email ?? 'N/A' }}
@if(empty($survey->phone)) N/A @else
+{{$survey->mobile_code }}
{{$survey->phone ?? 'N/A' }}
@endif
{{ $survey->company_type ?? 'N/A' }} @if(!empty($survey->company_type_other)) ({{ $survey->company_type_other }}) @endif {{ $survey->industry ?? 'N/A' }} ,{{ $survey->industry_focus_other }} {{ $survey->annual_revanue ?? 'N/A' }} {{ $survey->no_of_employees ?? 'N/A' }} {{ $survey->r_n_d ?? 'N/A' }} {{ $survey->certification ? str_replace(',', ', ', $survey->certification) : 'N/A' }} ({{ $survey->certifications_other }}) {{ $survey->production_capacity ?? 'N/A' }} {{ $survey->warehouse_volume ?? 'N/A' }} {{ $survey->seeking_partnerships ?? 'N/A' }} {{ $survey->hear_about ?? 'N/A' }} {{ $survey->platform_usability ?? 'N/A' }} {{ $survey->quality_of_supplier_information ?? 'N/A' }} {{ $survey->product_range ?? 'N/A' }} {{ $survey->communication ?? 'N/A' }} {{ $survey->live_chat ?? 'N/A' }} {{ $survey->transaction ?? 'N/A' }} {{ $survey->customer_support ?? 'N/A' }} {{ $survey->comments ?? 'N/A' }} {{ $survey->message ?? 'N/A' }} {{ $survey->status ?? 'N/A' }} {{ $survey->created_at ?? 'N/A' }} {{ $survey->updated_at ?? 'N/A' }} {{-- --}}

No Survey Data Available

Total Survey : {{ $surveyListing->total() }}
{{ $surveyListing->appends(request()->input())->links() }}
@endsection @section('modal') @include('modals.delete_modal') @endsection @section('script') @endsection