1<?php 2 3return [ 4 // The number of days elapsed before old activity log entries are deleted. 5 'prune_days' => env('APP_ACTIVITY_PRUNE_DAYS', 90), 6 7 // If set to true activity log entries generated by an admin user that is not also 8 // a part of the server in question will be hidden from the activity logs API response. 9 // 10 // Activity will still be properly tracked, just not displayed. 11 'hide_admin_activity' => env('APP_ACTIVITY_HIDE_ADMIN', false), 12]; 13 14