@extends('backend.admin.layouts.master') @section('content')

{{$heading}}

{{--@include('layouts.message')--}}
{{$form->name}}
Filter Column @if(count($groups)>0) Export Records @endif Modify Form
@foreach($filtercolumns as $column) @endforeach @foreach($groups as $key=>$group) @foreach($filtercolumns as $column) @endforeach @endforeach
SN{{$column->heading}}Action
{{++$key}} @if($row = \App\Models\Form\FormColumnStore::where('form_group_id',$group->id)->where('form_column_id',$column->id)->first()) @if($column->column->type=='file') @elseif($column->column->type=='radio' || $column->column->type=='checkbox' || $column->column->type=='select') @foreach($row->submitted_choices as $submitted_choice) {{$submitted_choice->name}} @endforeach @else {{$row->name}} @endif @endif
@endsection