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.
		
		
		
		
		
			
		
			
				
					
					
						
							32 lines
						
					
					
						
							821 B
						
					
					
				
			
		
		
	
	
							32 lines
						
					
					
						
							821 B
						
					
					
				| @php
 | |
|   $tab = 'edit-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-row-pagination')
 | |
| 
 | |
| @section('rows')
 | |
|   @php
 | |
|     $transformed = $rows->keyBy('_id')->map(function($r) use ($changeset) {
 | |
|       /** @var \App\Tables\Changeset $changeset */
 | |
|       return $changeset->transformRow($r, true);
 | |
|     });
 | |
|   @endphp
 | |
| 
 | |
|   <div id="rows-editor"></div>
 | |
| @stop
 | |
| 
 | |
| @push('scripts')
 | |
|   <script>
 | |
|     ready(function() {
 | |
|       app.RowsEditor('#rows-editor', {
 | |
|         route: {!! toJSON($table->draftUpdateRoute) !!},
 | |
|         columns: {!! toJSON($columns) !!},
 | |
|         xRows: {!! toJSON($transformed, true) !!},
 | |
|       })
 | |
|     });
 | |
|   </script>
 | |
| @endpush
 | |
| 
 |