Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update using-multiple-logs.md #1345

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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