cyberfly
4/16/2018 - 4:13 AM

Spatie Activity Log value changes

use Activity;
use Illuminate\Database\Eloquent\Model;

class Product extends Model
{
    protected static function boot()
    {
        static::updating(function ($product) {
            Activity::log("{$product->price} just updated to {$product->getOriginal('price')}");
        }
    }
}