@extends('layouts.app') @section('content')
@if ($errors->has('table-name')) {{ $errors->first('table-name') }} @endif
@if ($errors->has('table-descr')) {{ $errors->first('table-descr') }} @endif
@if ($errors->has('license')) {{ $errors->first('license', 'CC0') }} @endif
@if ($errors->has('upstream')) {{ $errors->first('upstream') }} @endif

Insert the initial table definition and data in CSV format. Columns are defined as CSV rows:

  • type (int, string, float, bool)
  • column identifier (letters, numbers, and underscore only)
  • user-friendly column title
@if ($errors->has('col-spec')) {{ $errors->first('col-spec') }} @endif
@if ($errors->has('row-data')) {{ $errors->first('row-data') }} @endif
@endsection