Skip to content

Commit

Permalink
Merge pull request #1 from tomatophp/develop
Browse files Browse the repository at this point in the history
update actions place on table
  • Loading branch information
3x1io authored Jan 18, 2024
2 parents 6f888e3 + 228ec3d commit f02ffc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tables/OrderTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ public function configure(SpladeTable $table)
->boolFilter(key: 'is_approved')
->dateFilter()
->defaultSort('id', 'desc')
->column(key: 'actions',label: trans('tomato-admin::global.crud.actions'))
->column(
key: 'id',
label: __('Id'),
Expand Down Expand Up @@ -142,6 +141,7 @@ public function configure(SpladeTable $table)
label: __('Created At'),
sortable: true
)
->column(key: 'actions',label: trans('tomato-admin::global.crud.actions'))
->paginate(10);


Expand Down

0 comments on commit f02ffc9

Please sign in to comment.