laravel sortable column
#you must install sortable before
#composer require kyslik/column-sortable
#then you can use all the library as mentioned in
# https://www.laravelcode.com/post/laravel-7-column-sorting-with-pagination-example
namespace App;
use Illuminate\Database\Eloquent\Model;
use Kyslik\ColumnSortable\Sortable;
class Product extends Model
{
use Sortable;
protected $fillable = [ 'name', 'price','details' ];
public $sortable = ['id', 'name', 'price','details', 'created_at', 'updated_at'];
}