datatable.directory codebase
				https://datatable.directory/
			
			
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							50 lines
						
					
					
						
							1.5 KiB
						
					
					
				
			
		
		
	
	
							50 lines
						
					
					
						
							1.5 KiB
						
					
					
				@php
 | 
						|
  $tab = 'add-rows';
 | 
						|
  /** @var \App\Tables\Column[] $columns */
 | 
						|
  /** @var \App\Tables\Changeset $changeset */
 | 
						|
  /** @var \App\Models\Row[]|Illuminate\Pagination\Paginator $rows */
 | 
						|
  /** @var \App\Models\Table $table */
 | 
						|
@endphp
 | 
						|
@extends('table.propose.layout')
 | 
						|
 | 
						|
@section('tab-content')
 | 
						|
  <form action="{{$table->draftUpdateRoute}}" method="POST" class="form col-md-12 mt-3" enctype="multipart/form-data">
 | 
						|
    @csrf
 | 
						|
    <input type="hidden" name="action" value="row.add-csv">
 | 
						|
    <input type="hidden" name="redirect" value="{{$table->getDraftRoute('add-rows')}}">
 | 
						|
    <?php Widget::setLayout(3,7) ?>
 | 
						|
 | 
						|
    {!! Widget::header(3, "Import CSV") !!}
 | 
						|
 | 
						|
    @php
 | 
						|
      $cols = [];
 | 
						|
      foreach ($columns as $column) {
 | 
						|
          $cols[] = '<b>'.e($column->title) . '</b>';
 | 
						|
      }
 | 
						|
    @endphp
 | 
						|
 | 
						|
    {!! Widget::par('Append rows from pasted CSV lines or uploaded CSV file') !!}
 | 
						|
 | 
						|
    {{-- TODO interactive widget to select which cols are included, and in which order --}}
 | 
						|
    {!! Widget::labeledPar('Columns', implode(', ', $cols), '', false) !!}
 | 
						|
 | 
						|
    {!! Widget::textarea('data', 'CSV as text')->help('
 | 
						|
      Comma-separated values, one row per line.
 | 
						|
      Do not put spaces after commas, they would be
 | 
						|
      included in the values.
 | 
						|
    ')->minHeight('10em') !!}
 | 
						|
 | 
						|
    {!! Widget::file('csv-file', 'CSV file')->accept("text/csv") !!}
 | 
						|
 | 
						|
    <div class="row form-group">
 | 
						|
      <div class="col-md-7 offset-md-3">
 | 
						|
        <button class="btn btn-outline-success">
 | 
						|
          @icon(fa-upload fa-pr)Upload
 | 
						|
        </button>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
  </form>
 | 
						|
@stop
 | 
						|
 | 
						|
@push('scripts')
 | 
						|
@endpush
 | 
						|
 |