mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
23 lines
540 B
PHP
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,
|
|
];
|