Skip to content

Commit

Permalink
Merge pull request #1345 from tobischulz/patch-1
Browse files Browse the repository at this point in the history
Update using-multiple-logs.md
  • Loading branch information
Nielsvanpach authored Nov 6, 2024
2 parents 82fc7bd + b75d470 commit 779b0a1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/advanced-usage/using-multiple-logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,14 @@ Activity::all()->last()->log_name; //returns 'other-log';

## Specifying a log for each model

By default, the `LogsActivity` trait uses `default_log_name` from the config file to write the logs. You can set a different log for each model by setting the `$logName` property on the model.
By default, the `LogsActivity` trait uses `default_log_name` from the config file to write the logs. To customize the log's name for each model, call the useLogName() method when configuring the LogOptions.

```
protected static $logName = 'custom_log_name_for_this_model';
public function getActivitylogOptions(): LogOptions
{
return LogOptions::defaults()
->useLogName('custom_log_name_for_this_model');
}
```

## Retrieving activity
Expand Down

0 comments on commit 779b0a1

Please sign in to comment.