@extends('statamic::layout') @section('title', 'Your Data < Data Import') @section('content')
{{ csrf_field() }}

Your data

Your data

This page shows the first 5 items of your data. If your data looks good, press continue.
Your uploaded file contains {{ $rowCount }} {{ Str::plural('row', $rowCount) }} of data.

@foreach ($preview as $row)
@foreach ($row as $key => $value) @endforeach
{{ $key }} {{ $value }}
@endforeach
@endsection