This commit is contained in:
Dennis
2023-11-22 12:50:30 +01:00
parent 514c010804
commit 6556cf017a

View File

@@ -3,7 +3,7 @@
{{ __('A new site with the name **:site** has been created by the user :user.', ['site' => $site->domain, 'user' => $user->name]) }}
{{ __('This site has been created on the server **:server**, the server currently has **:sites** of **:max** left.', ['server' => $server->name, 'sites' => $server->sites()->count(), 'max' => $server->maximum_sites]) }}
{{ __('This site has been created on the server **:server**, the server currently has **:sites** of **:max** left.', ['server' => $server->name, 'sites' => $server->sites()->count(), 'max' => ($server->maximum_sites > 0 ? $server->maximum_sites : 'Unlimited')]) }}
@component('mail::button', ['url' => \App\Filament\Resources\UserResource::getUrl('edit', ['record' => $user])])
{{ __('View user') }}