@extends('layouts.app') @section('title', 'Batch Data')

@section('content')





Batch Data
@if (session('error'))
{{ session('error') }}
@endif
@csrf
@foreach ($indexFields as $indexField)
@if ($indexField->type == 'string') @elseif ($indexField->type == 'date') @endif
@endforeach
@endsection