Hi,
thanks for this super usefull package!
It麓s possible search by a extra property??
For example:
activity()->withProperties(['special_code' => 123456])->log(':causer.username modify something...');
And now, get all logs with the same code, something like:
Activity::whereProperty('special_code', 123456)-get();
Thanks again!
The extra properties are stored as json. So you could just use the Eloquent query builder for that: https://laravel.com/docs/5.4/queries#json-where-clauses
Most helpful comment
The extra properties are stored as json. So you could just use the Eloquent query builder for that: https://laravel.com/docs/5.4/queries#json-where-clauses