datatable.directory codebase
https://datatable.directory/
您最多能選擇 25 個主題
主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
25 行
588 B
25 行
588 B
@php
|
|
$tab = 'manage-columns';
|
|
/** @var \App\Tables\Column[] $columns */
|
|
/** @var \App\Tables\Changeset $changeset */
|
|
/** @var \App\Models\Table $table */
|
|
@endphp
|
|
|
|
@extends('table.propose.layout')
|
|
|
|
@section('tab-content')
|
|
<div id="column-editor"></div>
|
|
@stop
|
|
|
|
@push('scripts')
|
|
<script>
|
|
ready(function() {
|
|
app.ColumnEditor('#column-editor', {
|
|
name: 'columns',
|
|
route: {!! toJSON($table->draftUpdateRoute) !!},
|
|
xColumns: {!! toJSON($columns) !!},
|
|
orderChanged: @json(!empty($changeset->columnOrder))
|
|
})
|
|
});
|
|
</script>
|
|
@endpush
|
|
|