This is the documentation for
v4 but the latest version is
v10
.
You can switch versions in the menu on the left/at the top.
Check your current version with the following command:
composer show spatie/laravel-medialibrary
Laravel medialibrary has a built in feature to help you order the media in your project. By default all inserted media items are ordered by their creation order (from the newest to the oldest) using the order_column
column of the media
table.
You can easily reorder a list of media using the ̀Media::setNewOrder` static method:
/**
* This function reorders the records: the record with the first id in the array
* will get order 1, the record with the second it will get order 2, ...
*
* A starting order number can be optionally supplied (defaults to 1).
*
* @param array $ids
* @param int $startOrder
*/
Media::setNewOrder([11, 2, 26]);
Of course you can also manually change the value of the order_column
.
$media->order_column = 10;
$media->save();