mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 00:02:15 +01:00
15 lines
493 B
PHP
15 lines
493 B
PHP
@component('mail::message')
|
|
@if(empty($timeEntry->description))
|
|
{{ __('Your currently running time entry is now running for more than 8 hours!') }}
|
|
@else
|
|
{{ __('Your currently running time entry ":description" is now running for more than 8 hours!', ['description' => $timeEntry->description]) }}
|
|
@endif
|
|
|
|
{{ __('If you forgot to stop the Time Tracker you do that in solidtime:') }}
|
|
|
|
@component('mail::button', ['url' => $dashboardUrl])
|
|
{{ __('Go to solidtime') }}
|
|
@endcomponent
|
|
|
|
@endcomponent
|