@extends('layouts.customer') @section('content')

Reports

@if ($message = Session::get('success'))

{{ $message }}

@endif
@php $form_fields = array_column( json_decode($form->form_fields), 'heading' ); @endphp @if( count( $form_fields ) > 0 ) @foreach( $form_fields as $key => $value ) @if($key >=5) @break @endif @endforeach @endif @if($data) @php $i = 0; @endphp @foreach($data as $datas) @php $form_data = json_decode($datas->form_data); @endphp @if( count($form_data) > 0 ) @foreach( $form_data as $key => $value ) @if(in_array($value->title,$form_fields)) @if($key >=5) @break @endif @endif @endforeach @endif @endforeach @else

No records found!

@endif
Applicant ID{{ $value }}Action
{{$datas->id}} @php if(is_array($value->value)){ $dt = implode(",",$value->value); echo $dt; } else{ echo $value->value; } @endphp
@endsection