generathor-laravel 2.0.1 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -137,7 +137,7 @@ new class extends ListComponent
|
|
|
137
137
|
</flux:modal>
|
|
138
138
|
<flux:table :paginate="$this->items" pagination:scroll-to>
|
|
139
139
|
<flux:table.columns><% columns.forEach((column)=> { %>
|
|
140
|
-
<flux:table.column sortable :sorted="$sort === '<%= column.name %>'" :direction="$direction" wire:click="sortBy('<%= column.name %>')"
|
|
140
|
+
<flux:table.column sortable :sorted="$sort === '<%= column.name %>'" :direction="$direction" wire:click="sortBy('<%= column.name %>')">{{ __('<%= column.label %>') }}</flux:table.column><% }) %>
|
|
141
141
|
<flux:table.column>{{ __('Actions') }}</flux:table.column>
|
|
142
142
|
</flux:table.columns>
|
|
143
143
|
<flux:table.rows>
|
|
@@ -172,7 +172,7 @@ new class extends RelatedListComponent
|
|
|
172
172
|
</flux:navbar>
|
|
173
173
|
<flux:table :paginate="$this->items" pagination:scroll-to>
|
|
174
174
|
<flux:table.columns><% columns.forEach((column)=> { %>
|
|
175
|
-
<flux:table.column sortable :sorted="$sort === '<%= column.name %>'" :direction="$direction" wire:click="sortBy('<%= column.name %>')"
|
|
175
|
+
<flux:table.column sortable :sorted="$sort === '<%= column.name %>'" :direction="$direction" wire:click="sortBy('<%= column.name %>')">{{ __('<%= column.label %>') }}</flux:table.column><% }) %>
|
|
176
176
|
<flux:table.column>{{ __('Actions') }}</flux:table.column>
|
|
177
177
|
</flux:table.columns>
|
|
178
178
|
<flux:table.rows>
|