diff --git a/README.md b/README.md index c188f12..e133567 100755 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ -- [Column sorting for Laravel 5.5-7](#column-sorting-for-laravel-55-7) +- [Column sorting for Laravel 5.5-8](#column-sorting-for-laravel-55-8) - [Setup](#setup) - [Composer](#composer) - [Laravel's >=5.5 auto discovery](#laravels-55-auto-discovery) @@ -13,23 +13,10 @@ - [Configuration in few words](#configuration-in-few-words) - [Font Awesome (default font classes)](#font-awesome-default-font-classes) - [Font Awesome 5](#font-awesome-5) - - [Full Example](#full-example) - - [Routes](#routes) - - [Controller's `index()` method](#controllers-index-method) - - [View (_pagination included_)](#view-_pagination-included_) -- [HasOne / BelongsTo Relation sorting](#hasone--belongsto-relation-sorting) - - [Define hasOne relation](#define-hasone-relation) - - [Define belongsTo relation](#define-belongsto-relation) - - [Define `$sortable` arrays](#define-sortable-arrays) - - [Blade and relation sorting](#blade-and-relation-sorting) -- [ColumnSortable overriding (advanced)](#columnsortable-overriding-advanced) -- [Aliasing](#aliasing) - - [Using `withCount()`](#using-withcount) -- [Exception to catch](#exception-to-catch) -# Column sorting for Laravel 5.5-7 +# Column sorting for Laravel 5.5-8 [![Latest Version](https://img.shields.io/github/release/Kyslik/column-sortable.svg?style=flat-square)](https://github.com/Kyslik/column-sortable/releases) [![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md) [![Total Downloads](https://img.shields.io/packagist/dt/Kyslik/column-sortable.svg?style=flat-square)](https://packagist.org/packages/Kyslik/column-sortable) @@ -46,7 +33,7 @@ Pull this package in through Composer (development/latest version `dev-master`) ```json { "require": { - "kyslik/column-sortable": "5.7.*" + "kyslik/column-sortable": "5.8.*" } } ``` diff --git a/composer.json b/composer.json index 5083278..7eef343 100755 --- a/composer.json +++ b/composer.json @@ -19,8 +19,8 @@ ], "require": { "php": ">=7.0", - "Illuminate/Support": "5.5.*|5.6.*|5.7.*", - "Illuminate/Database": "5.5.*|5.6.*|5.7.*" + "illuminate/support": "5.5.*|5.6.*|5.7.*|5.8.*", + "illuminate/database": "5.5.*|5.6.*|5.7.*|5.8.*" }, "require-dev": { "phpunit/phpunit": "^6.0|^7.0",