@extends('layouts.admin.app')
@section('content')
Use Profile Survey
@if(count($useprofileData) > 0)
| Sr. No |
Action |
UUID |
Preregistration Number |
Buyer Name |
Company Name |
Region |
@php $i = 1; @endphp
@foreach($useprofileData as $key => $n)
| {{$i++}} |
|
{{$n->uuid}} |
{{$n->preregistration_no}} |
{{$n->buyer_name}} |
{{$n->company_name}} |
{{$n->Region->name}} |
@endforeach
@else
USER RECORD NOT FOUND
@endif
@endsection
@section('scripts')
@endsection