gitextract_nvk_dftn/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.yml │ │ └── config.yml │ └── workflows/ │ └── fix-php-code-style-issues.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── config/ │ └── filament-activitylog.php ├── package.json ├── pint.json ├── postcss.config.js ├── resources/ │ ├── css/ │ │ └── plugin.css │ ├── dist/ │ │ └── activitylog.css │ ├── lang/ │ │ ├── ar/ │ │ │ ├── action.php │ │ │ ├── forms.php │ │ │ ├── tables.php │ │ │ └── timeline.php │ │ ├── de/ │ │ │ ├── action.php │ │ │ ├── forms.php │ │ │ ├── tables.php │ │ │ └── timeline.php │ │ ├── en/ │ │ │ ├── action.php │ │ │ ├── forms.php │ │ │ ├── infolists.php │ │ │ ├── notifications.php │ │ │ ├── tables.php │ │ │ └── timeline.php │ │ ├── es/ │ │ │ ├── action.php │ │ │ ├── forms.php │ │ │ ├── infolists.php │ │ │ ├── notifications.php │ │ │ ├── tables.php │ │ │ └── timeline.php │ │ ├── fa/ │ │ │ ├── action.php │ │ │ ├── forms.php │ │ │ ├── infolists.php │ │ │ ├── notifications.php │ │ │ ├── tables.php │ │ │ └── timeline.php │ │ ├── fr/ │ │ │ ├── action.php │ │ │ ├── forms.php │ │ │ ├── tables.php │ │ │ └── timeline.php │ │ ├── he/ │ │ │ ├── action.php │ │ │ ├── forms.php │ │ │ ├── tables.php │ │ │ └── timeline.php │ │ ├── id/ │ │ │ ├── action.php │ │ │ ├── forms.php │ │ │ ├── tables.php │ │ │ └── timeline.php │ │ ├── it/ │ │ │ ├── action.php │ │ │ ├── forms.php │ │ │ ├── tables.php │ │ │ └── timeline.php │ │ ├── lv/ │ │ │ ├── action.php │ │ │ ├── forms.php │ │ │ ├── tables.php │ │ │ └── timeline.php │ │ ├── nl/ │ │ │ ├── action.php │ │ │ ├── forms.php │ │ │ ├── tables.php │ │ │ └── timeline.php │ │ ├── pl/ │ │ │ ├── action.php │ │ │ ├── forms.php │ │ │ ├── tables.php │ │ │ └── timeline.php │ │ ├── pt_BR/ │ │ │ ├── action.php │ │ │ ├── forms.php │ │ │ ├── infolists.php │ │ │ ├── notifications.php │ │ │ ├── tables.php │ │ │ └── timeline.php │ │ ├── pt_PT/ │ │ │ ├── action.php │ │ │ ├── forms.php │ │ │ ├── tables.php │ │ │ └── timeline.php │ │ └── tr/ │ │ ├── action.php │ │ ├── forms.php │ │ ├── tables.php │ │ └── timeline.php │ └── views/ │ ├── .gitkeep │ └── filament/ │ ├── infolists/ │ │ └── components/ │ │ ├── time-line-icon-entry.blade.php │ │ ├── time-line-propertie-entry.blade.php │ │ ├── time-line-repeatable-entry.blade.php │ │ └── time-line-title-entry.blade.php │ └── tables/ │ └── columns/ │ └── activity-logs-properties.blade.php ├── src/ │ ├── Actions/ │ │ ├── ActivityLogTimelineSimpleAction.php │ │ ├── ActivityLogTimelineTableAction.php │ │ └── Concerns/ │ │ └── ActionContent.php │ ├── ActivitylogPlugin.php │ ├── ActivitylogServiceProvider.php │ ├── Helpers/ │ │ └── ActivityLogHelper.php │ ├── Infolists/ │ │ ├── Components/ │ │ │ ├── TimeLineIconEntry.php │ │ │ ├── TimeLinePropertiesEntry.php │ │ │ ├── TimeLineRepeatableEntry.php │ │ │ └── TimeLineTitleEntry.php │ │ └── Concerns/ │ │ └── HasModifyState.php │ ├── RelationManagers/ │ │ └── ActivitylogRelationManager.php │ ├── Resources/ │ │ └── ActivitylogResource/ │ │ ├── ActivitylogResource.php │ │ ├── Pages/ │ │ │ ├── ListActivitylog.php │ │ │ └── ViewActivitylog.php │ │ └── Schemas/ │ │ └── ActivitylogForm.php │ └── Traits/ │ └── HasCustomActivityResource.php └── tailwind.config.js