diff --git a/resources/css/base.css b/resources/css/base.css index 91df90316..f09434ff8 100644 --- a/resources/css/base.css +++ b/resources/css/base.css @@ -16,6 +16,10 @@ h3 { @apply text-2xl; } + + h4 { + @apply text-xl; + } } /* diff --git a/resources/views/backend/about.blade.php b/resources/views/backend/about.blade.php index cb29be766..110544c86 100644 --- a/resources/views/backend/about.blade.php +++ b/resources/views/backend/about.blade.php @@ -4,65 +4,143 @@ @section('content')
+
+

Links

+ + + + + + + + + + + + + + + +
Total{{$url->count()}}
From Registered Users{{$url->whereUserId(auth()->id())->count()}}
From Unregistered Users{{$url->numberOfUrlsByGuests()}}
+ +
+ +

Users

+ + + + + + + + + + + +
Registered{{$user->count()}}
Unregistered{{$user->totalGuestUsers()}}
+ +
+ +

Random String

+ + + + + + + + + + + +
Possible Output{{$keyGeneratorService->maxCapacity()}}
Generated{{$keyGeneratorService->usedCapacity()}}
+
+ +
+
- {{__('About System')}} + {{__('Configuration')}}
-

Random Characters

+

Shortened Links

+ @php + $hashLength = config('urlhub.hash_length'); + $redirectCacheMaxAge = config('urlhub.redirect_cache_max_age'); + @endphp - - + + - - + + - - + + + + + + + + + +
Length{{config('urlhub.hash_length')}}Random string length{{$hashLength.' '.str('character')->plural($hashLength)}}
Possible Output{{$keyGeneratorService->maxCapacity()}}web_title{{var_export(config('urlhub.web_title'))}}
Generated{{$keyGeneratorService->usedCapacity()}}redirect_status_code{{config('urlhub.redirect_status_code')}}
redirect_cache_max_age{{$redirectCacheMaxAge.' '.str('second')->plural($redirectCacheMaxAge)}}
track_bot_visits{{var_export(config('urlhub.track_bot_visits'))}}

-

Short Links

+

Guest / Unregistered Users

- - + + - - - - - - + +
Total{{$url->count()}}Anyone can shorten the link{{var_export(config('urlhub.public_site'))}}
From Registered Users{{$url->whereUserId(auth()->id())->count()}}
From Unregistered Users{{$url->numberOfUrlsByGuests()}}Anyone can sign up{{var_export(config('urlhub.registration'))}}

-

Users

+

QRCode

- - + + - - + + + + + + + + + + + + + + + + + +
Registered{{$user->count()}}Enable{{var_export(config('urlhub.qrcode'))}}
Unregistered{{$user->totalGuestUsers()}}Size{{config('urlhub.qrcode_size')}} px
Margin{{config('urlhub.qrcode_margin')}} px
Format{{config('urlhub.qrcode_format')}}
Error correction levels{{config('urlhub.qrcode_error_correction')}}
Round block{{var_export(config('urlhub.qrcode_round_block_size'))}}