laravel sortable code example
Example 1: laravel sort collection
$collection = collect([5, 3, 1, 2, 4]);
$sorted = $collection->sortDesc();
$sorted->values()->all();
// [5, 4, 3, 2, 1]
Example 2: get all sort by laravel
$results = Project::orderBy('name')->get();
Example 3: sort laravel eloquent
$posts = Post::orderBy('id', 'DESC')->get();
Example 4: composer require kyslik/column-sortable
php artisan vendor:publish --provider="Kyslik\ColumnSortable\ColumnSortableServiceProvider" --tag="config"