larapost
larapost copied to clipboard
update readme for laravel version
Method lists' is removed in Laravel 5.3.
In larablog/app/Parser/Type.php I had to change the list mehod to pluck
Post::whereIn('id', $posts->pluck('id')->toArray())->update([ 'status' => 'deleted' ]);
Also info about which database suits well with this code