Answers for "laravel sortable column"

PHP
0

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'];
}
Posted by: Guest on August-26-2021

Browse Popular Code Answers by Language