@extends('layouts.simple.master') @section('title', 'Customers List') @section('style') @endsection @section('breadcrumb-title')

Customers

@endsection @section('breadcrumb-items') @endsection @section('content')
@if(count($customers) > 0) @foreach($customers as $index=>$customer) @php $question = $customer->userQuestions->first(); @endphp @endforeach @endif
S.No ID Name Email Mobile No Question Answer Actions
{{++$index;}} {{$customer->id}} {{$customer->name}} {{$customer->email}} {{$customer?->additional_info?->phone}} {{$question->question->question ?? ''}} {{$question->answer->option ?? ''}}
{!! $customers->links() !!}
@endsection @section('script') @endsection