queueable email sharing

This commit is contained in:
Peter Papp
2021-07-23 18:13:58 +02:00
parent c2771be913
commit f8cb879e42
9 changed files with 103 additions and 16 deletions

View File

@@ -121,7 +121,8 @@ class Folder extends Model
public function getCreatedAtAttribute(): string
{
return format_date(
set_time_by_user_timezone($this->attributes['created_at']), __t('time')
set_time_by_user_timezone($this->attributes['created_at']),
__t('time')
);
}
@@ -135,7 +136,8 @@ class Folder extends Model
}
return format_date(
set_time_by_user_timezone($this->attributes['deleted_at']), __t('time')
set_time_by_user_timezone($this->attributes['deleted_at']),
__t('time')
);
}