Files
animethemes-server/config/eloquent-sortable.php
T
2026-03-04 16:50:17 -03:00

23 lines
540 B
PHP

<?php
declare(strict_types=1);
return [
/*
* Which column will be used as the order column.
*/
'order_column_name' => 'position',
/*
* Define if the models should sort when creating.
* When true, the package will automatically assign the highest order number to a new model
*/
'sort_when_creating' => true,
/*
* Define if the timestamps should be ignored when sorting.
* When true, updated_at will not be updated when using setNewOrder
*/
'ignore_timestamps' => false,
];