Added mail to inform users about still running time entries

This commit is contained in:
Constantin Graf
2024-07-18 12:49:28 +02:00
committed by Constantin Graf
parent 855db81104
commit 8db0a7d25e
10 changed files with 347 additions and 1 deletions

View File

@@ -26,6 +26,7 @@ use Korridor\LaravelComputedAttributes\ComputedAttributes;
* @property string $user_id
* @property string $member_id
* @property bool $is_imported
* @property Carbon|null $still_active_email_sent_at
* @property-read User $user
* @property-read Member $member
* @property string $organization_id
@@ -59,6 +60,7 @@ class TimeEntry extends Model
'tags' => 'array',
'billable_rate' => 'int',
'is_imported' => 'bool',
'still_active_email_sent_at' => 'datetime',
];
/**