@extends('admin.layouts.master') @section('content') @php $status=["None","Client","Dater","Denied","Lead","Unresponsive","Not Eligible"]; //$more_children=["Yes","No","Not Sure"]; @endphp
@csrf
{{-- @csrf --}} {{-- {{dd(Request::get('status') )}} --}}
@if(Session::get('errors')) {!!Session::forget('errors')!!} @endif @if(Session::get('success')) {!!Session::forget('success')!!} @endif
@foreach($customerInfo as $key => $customer_value) @endforeach
ID First Name Last Name PhoneNo Email Gender Status Status Action Action
{{$key+1}} {{$customer_value->first_name}} {{$customer_value->last_name}} {{$customer_value->phone_number}} {{$customer_value->email}} {{$customer_value->gender}} {{$customer_value->status}}
@endsection @push('script') @endpush