Fix old name and dead links (#949)

This commit is contained in:
Dennis 2024-05-07 09:35:04 +02:00 committed by GitHub
commit 4358d071b3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 42 additions and 42 deletions

View file

@ -1,5 +1,5 @@
### --- App Settings --- ### ### --- App Settings --- ###
APP_NAME=Controlpanel.gg APP_NAME=Ctrlpanel.gg
APP_ENV=production APP_ENV=production
APP_KEY= APP_KEY=
APP_DEBUG=false APP_DEBUG=false

View file

@ -31,9 +31,9 @@ body:
validations: validations:
required: false required: false
- type: textarea - type: textarea
id: controlpanel-logs id: ctrlpanel-logs
attributes: attributes:
label: Controlpanel Logs label: Ctrlpanel Logs
description: Please copy and paste your laravel-log output. You may also provide a link to it using the following command `tail -n 100 /var/www/controlpanel/storage/logs/laravel.log | nc pteropaste.com 99` description: Please copy and paste your laravel-log output. You may also provide a link to it using the following command `tail -n 100 /var/www/controlpanel/storage/logs/laravel.log | nc pteropaste.com 99`
render: Shell render: Shell
- type: textarea - type: textarea

View file

@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) 2021 ControlPanel.gg Copyright (c) 2021 CtrlPanel.gg
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View file

@ -17,19 +17,19 @@
- Theme Support - Theme Support
- and so much more! - and so much more!
# ControlPanel-gg # CtrlPanel-gg
![controlpanel](https://user-images.githubusercontent.com/67899387/214684708-739c1d21-06e8-4dec-a4f1-81533a46cc7e.png) ![ctrlpanel](https://user-images.githubusercontent.com/67899387/214684708-739c1d21-06e8-4dec-a4f1-81533a46cc7e.png)
![](https://img.shields.io/endpoint?label=v0.9%20Installations&url=https%3A%2F%2Fmarket.ctrlpanel.gg%2Fcallhome.php%3Fgetinstalls) ![](https://img.shields.io/endpoint?label=v0.9%20Installations&url=https%3A%2F%2Fmarket.ctrlpanel.gg%2Fcallhome.php%3Fgetinstalls)
![](https://img.shields.io/badge/Overall%20Installations-5000%2B-green) ![](https://img.shields.io/badge/Overall%20Installations-5000%2B-green)
![](https://img.shields.io/github/stars/ControlPanel-gg/dashboard) ![](https://img.shields.io/github/forks/ControlPanel-gg/dashboard) ![](https://img.shields.io/github/tag/ControlPanel-gg/dashboard) [![Crowdin](https://badges.crowdin.net/controlpanelgg/localized.svg)](https://crowdin.com/project/controlpanelgg) ![](https://img.shields.io/github/issues/ControlPanel-gg/dashboard) ![](https://img.shields.io/github/license/ControlPanel-gg/dashboard) ![](https://img.shields.io/discord/787829714483019826) ![](https://img.shields.io/github/stars/CtrlPanel-gg/panel) ![](https://img.shields.io/github/forks/CtrlPanel-gg/panel) ![](https://img.shields.io/github/tag/CtrlPanel-gg/panel) [![Crowdin](https://badges.crowdin.net/controlpanelgg/localized.svg)](https://crowdin.com/project/controlpanelgg) ![](https://img.shields.io/github/issues/CtrlPanel-gg/panel) ![](https://img.shields.io/github/license/CtrlPanel-gg/panel) ![](https://img.shields.io/discord/787829714483019826)
## About ## About
ControlPanel's Dashboard is a dashboard application designed to offer clients a management tool to manage their pterodactyl servers. This dashboard comes with a credit-based billing solution that credits users hourly for each server they have and suspends them if they run out of credits. CtrlPanel's Dashboard is a dashboard application designed to offer clients a management tool to manage their pterodactyl servers. This dashboard comes with a credit-based billing solution that credits users hourly for each server they have and suspends them if they run out of credits.
This dashboard offers an easy to use and free billing solution for all starting and experienced hosting providers. This dashboard has many customisation options and added discord Oauth verification to offer a solid link between your discord server and your dashboard. You can check our [Demo here](https://demo.controlpanel.gg "Demo"). This dashboard offers an easy to use and free billing solution for all starting and experienced hosting providers. This dashboard has many customisation options and added discord Oauth verification to offer a solid link between your discord server and your dashboard. You can check our [Demo here](https://demo.ctrlpanel.gg "Demo").
### [Installation](https://ctrlpanel.gg/docs/intro "Installation") ### [Installation](https://ctrlpanel.gg/docs/intro "Installation")

View file

@ -75,7 +75,7 @@ function PaypalPay(Request $request)
"application_context" => [ "application_context" => [
"cancel_url" => route('payment.Cancel'), "cancel_url" => route('payment.Cancel'),
"return_url" => route('payment.PayPalSuccess', ['payment' => $payment->id]), "return_url" => route('payment.PayPalSuccess', ['payment' => $payment->id]),
'brand_name' => config('app.name', 'Controlpanel.GG'), 'brand_name' => config('app.name', 'CtrlPanel.gg'),
'shipping_preference' => 'NO_SHIPPING' 'shipping_preference' => 'NO_SHIPPING'
] ]

View file

@ -32,7 +32,7 @@ class HomeController extends Controller
if (Storage::exists('callHome')) { if (Storage::exists('callHome')) {
return; return;
} }
Http::asForm()->post('https://market.controlpanel.gg/callhome.php', [ Http::asForm()->post('https://market.ctrlpanel.gg/callhome.php', [
'id' => Hash::make(URL::current()), 'id' => Hash::make(URL::current()),
]); ]);
Storage::put('callHome', 'This is only used to count the installations of cpgg.'); Storage::put('callHome', 'This is only used to count the installations of cpgg.');

View file

@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Facade;
return [ return [
'version' => '0.9.7', 'version' => '0.9.8',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------

View file

@ -474,7 +474,7 @@ class SettingsSeeder extends Seeder
Settings::firstOrCreate([ Settings::firstOrCreate([
'key' => 'SETTINGS::MAIL:FROM_NAME', 'key' => 'SETTINGS::MAIL:FROM_NAME',
], [ ], [
'value' => env('APP_NAME', 'Controlpanel'), 'value' => env('APP_NAME', 'Ctrlpanel'),
'type' => 'string', 'type' => 'string',
'description' => 'Mailer From Name.', 'description' => 'Mailer From Name.',
]); ]);
@ -623,7 +623,7 @@ class SettingsSeeder extends Seeder
Settings::firstOrCreate([ Settings::firstOrCreate([
'key' => 'SETTINGS::SYSTEM:MOTD_MESSAGE', 'key' => 'SETTINGS::SYSTEM:MOTD_MESSAGE',
], [ ], [
'value' => '<h1 style="text-align: center;"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://controlpanel.gg/img/controlpanel.png" alt="" width="200" height="200"><span style="font-size: 36pt;">Controlpanel.gg</span></h1> 'value' => '<h1 style="text-align: center;"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://ctrlpanel.gg/img/controlpanel.png" alt="" width="200" height="200"><span style="font-size: 36pt;">Ctrlpanel.gg</span></h1>
<p><span style="font-size: 18pt;">Thank you for using our Software</span></p> <p><span style="font-size: 18pt;">Thank you for using our Software</span></p>
<p><span style="font-size: 18pt;">If you have any questions, make sure to join our <a href="https://discord.com/invite/4Y6HjD2uyU" target="_blank" rel="noopener">Discord</a></span></p> <p><span style="font-size: 18pt;">If you have any questions, make sure to join our <a href="https://discord.com/invite/4Y6HjD2uyU" target="_blank" rel="noopener">Discord</a></span></p>
<p><span style="font-size: 10pt;">(you can change this message in the <a href="admin/settings#system">Settings</a> )</span></p>', <p><span style="font-size: 10pt;">(you can change this message in the <a href="admin/settings#system">Settings</a> )</span></p>',
@ -633,7 +633,7 @@ class SettingsSeeder extends Seeder
Settings::firstOrCreate([ Settings::firstOrCreate([
'key' => 'SETTINGS::SYSTEM:SEO_TITLE', 'key' => 'SETTINGS::SYSTEM:SEO_TITLE',
], [ ], [
'value' => 'Controlpanel.gg', 'value' => 'Ctrlpanel.gg',
'type' => 'text', 'type' => 'text',
'description' => 'The SEO Title.', 'description' => 'The SEO Title.',
]); ]);

View file

@ -160,7 +160,7 @@
"Support server": "Support server", "Support server": "Support server",
"Documentation": "Documentation", "Documentation": "Documentation",
"Github": "Github", "Github": "Github",
"Support ControlPanel": "Support ControlPanel", "Support CtrlPanel": "Support CtrlPanel",
"Servers": "Servers", "Servers": "Servers",
"Total": "Total", "Total": "Total",
"Payments": "Payments", "Payments": "Payments",
@ -177,13 +177,13 @@
"Title": "Title", "Title": "Title",
"User": "User", "User": "User",
"Last updated": "Last updated", "Last updated": "Last updated",
"Controlpanel.gg": "Controlpanel.gg", "Ctrlpanel.gg": "Ctrlpanel.gg",
"Version": "Version", "Version": "Version",
"Individual nodes": "Individual nodes", "Individual nodes": "Individual nodes",
"You reached the Pterodactyl perPage limit. Please make sure to set it higher than your server count.": "You reached the Pterodactyl perPage limit. Please make sure to set it higher than your server count.", "You reached the Pterodactyl perPage limit. Please make sure to set it higher than your server count.": "You reached the Pterodactyl perPage limit. Please make sure to set it higher than your server count.",
"You can do that in settings.": "You can do that in settings.", "You can do that in settings.": "You can do that in settings.",
"Note": "Note", "Note": "Note",
"If this error persists even after changing the limit, it might mean a server was deleted on Pterodactyl, but not on ControlPanel. Try clicking the button below.": "If this error persists even after changing the limit, it might mean a server was deleted on Pterodactyl, but not on ControlPanel. Try clicking the button below.", "If this error persists even after changing the limit, it might mean a server was deleted on Pterodactyl, but not on CtrlPanel. Try clicking the button below.": "If this error persists even after changing the limit, it might mean a server was deleted on Pterodactyl, but not on CtrlPanel. Try clicking the button below.",
"Sync servers": "Sync servers", "Sync servers": "Sync servers",
"Node": "Node", "Node": "Node",
"Server count": "Server count", "Server count": "Server count",
@ -256,9 +256,9 @@
"You usually do not need to change anything here": "You usually do not need to change anything here", "You usually do not need to change anything here": "You usually do not need to change anything here",
"Edit Server": "Edit Server", "Edit Server": "Edit Server",
"Server identifier": "Server identifier", "Server identifier": "Server identifier",
"Change the server identifier on controlpanel to match a pterodactyl server.": "Change the server identifier on controlpanel to match a pterodactyl server.", "Change the server identifier on ctrlpanel to match a pterodactyl server.": "Change the server identifier on ctrlpanel to match a pterodactyl server.",
"Server owner": "Server owner", "Server owner": "Server owner",
"Change the current server owner on controlpanel and pterodactyl.": "Change the current server owner on controlpanel and pterodactyl.", "Change the current server owner on ctrlpanel and pterodactyl.": "Change the current server owner on ctrlpanel and pterodactyl.",
"Server id": "Server id", "Server id": "Server id",
"Config": "Config", "Config": "Config",
"Suspended at": "Suspended at", "Suspended at": "Suspended at",

View file

@ -8,7 +8,7 @@ if (file_exists('../../install.lock')) {
<html> <html>
<head> <head>
<title>Controlpanel.gg installer Script</title> <title>Ctrlpanel.gg installer Script</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<style> <style>
@ -48,7 +48,7 @@ if (file_exists('../../install.lock')) {
$cardheader = ' $cardheader = '
<div class="card card-outline-success bg-dark"> <div class="card card-outline-success bg-dark">
<div class="card-header text-center"> <div class="card-header text-center">
<b class="mr-1 text-light">Controlpanel.GG</b> <b class="mr-1 text-light">Ctrlpanel.GG</b>
</div> </div>
<div class="card-body bg-light">'; <div class="card-body bg-light">';
@ -57,7 +57,7 @@ if (! isset($_GET['step'])) {
echo run_console('cp .env.example .env'); echo run_console('cp .env.example .env');
} }
echo $cardheader; ?> echo $cardheader; ?>
<p class="login-box-msg">This installer will lead you through the most crucial Steps of Controlpanel.gg`s <p class="login-box-msg">This installer will lead you through the most crucial Steps of Ctrlpanel.gg`s
setup</p> setup</p>
<p class="<?php echo checkHTTPS() == true ? 'ok' : 'notok'; ?>">HTTPS is required</p> <p class="<?php echo checkHTTPS() == true ? 'ok' : 'notok'; ?>">HTTPS is required</p>
@ -218,7 +218,7 @@ if (isset($_GET['step']) && $_GET['step'] == 2) {
<label for="name">Your Host-Name</label> <label for="name">Your Host-Name</label>
<input id="name" name="name" type="text" <input id="name" name="name" type="text"
required required
value="Controlpanel.gg" class="form-control"> value="Ctrlpanel.gg" class="form-control">
</div> </div>
</div> </div>

View file

@ -199,7 +199,7 @@
src="{{ \Illuminate\Support\Facades\Storage::disk('public')->exists('icon.png') ? asset('storage/icon.png') : asset('images/controlpanel_logo.png') }}" src="{{ \Illuminate\Support\Facades\Storage::disk('public')->exists('icon.png') ? asset('storage/icon.png') : asset('images/controlpanel_logo.png') }}"
alt="{{ config('app.name', 'Laravel') }} Logo" class="brand-image img-circle" alt="{{ config('app.name', 'Laravel') }} Logo" class="brand-image img-circle"
style="opacity: .8"> style="opacity: .8">
<span class="brand-text font-weight-light">{{ config('app.name', 'Controlpanel.gg') }}</span> <span class="brand-text font-weight-light">{{ config('app.name', 'Ctrlpanel.gg') }}</span>
</a> </a>
<!-- Sidebar --> <!-- Sidebar -->
@ -441,7 +441,7 @@
<strong>Copyright &copy; 2021-{{ date('Y') }} <a <strong>Copyright &copy; 2021-{{ date('Y') }} <a
href="{{ url('/') }}">{{ env('APP_NAME', 'Laravel') }}</a>.</strong> href="{{ url('/') }}">{{ env('APP_NAME', 'Laravel') }}</a>.</strong>
All rights All rights
reserved. Powered by <a href="https://controlpanel.gg">ControlPanel</a>. | Theme by <a href="https://2icecube.de/cpgg">2IceCube</a> reserved. Powered by <a href="https://ctrlpanel.gg">CtrlPanel</a>. | Theme by <a href="https://2icecube.de/cpgg">2IceCube</a>
@if (!str_contains(config('BRANCHNAME'), 'main') && !str_contains(config('BRANCHNAME'), 'unknown')) @if (!str_contains(config('BRANCHNAME'), 'main') && !str_contains(config('BRANCHNAME'), 'unknown'))
Version <b>{{ config('app')['version'] }} - {{ config('BRANCHNAME') }}</b> Version <b>{{ config('app')['version'] }} - {{ config('BRANCHNAME') }}</b>
@endif @endif

View file

@ -33,7 +33,7 @@
@else @else
<div class="callout callout-danger"> <div class="callout callout-danger">
<h4>{{ __('No recent activity from cronjobs')}}</h4> <h4>{{ __('No recent activity from cronjobs')}}</h4>
<p>{{ __('Are cronjobs running?')}} <a class="text-primary" target="_blank" href="https://controlpanel.gg/docs/Installation/getting-started#crontab-configuration">{{ __('Check the docs for it here')}}</a></p> <p>{{ __('Are cronjobs running?')}} <a class="text-primary" target="_blank" href="https://ctrlpanel.gg/docs/Installation/getting-started#crontab-configuration">{{ __('Check the docs for it here')}}</a></p>
</div> </div>
@endif @endif

View file

@ -23,7 +23,7 @@
<b><i class="fas fa-shield-alt"></i> {{__("Version Outdated:")}}</b></br> <b><i class="fas fa-shield-alt"></i> {{__("Version Outdated:")}}</b></br>
{{__("You are running on")}} v{{config("app.version")}}-{{config("BRANCHNAME")}}. {{__("You are running on")}} v{{config("app.version")}}-{{config("BRANCHNAME")}}.
{{__("The latest Version is")}} v{{Storage::get('latestVersion')}}</br> {{__("The latest Version is")}} v{{Storage::get('latestVersion')}}</br>
<a href="https://controlpanel.gg/docs/Installation/updating">{{__("Consider updating now")}}</a> <a href="https://ctrlpanel.gg/docs/Installation/updating">{{__("Consider updating now")}}</a>
</div> </div>
@endif @endif
</section> </section>
@ -39,16 +39,16 @@
class="fab fa-discord mr-2"></i> {{__('Support server')}}</a> class="fab fa-discord mr-2"></i> {{__('Support server')}}</a>
</div> </div>
<div class="col-md-3"> <div class="col-md-3">
<a href="https://controlpanel.gg/docs/intro" class="btn btn-dark btn-block px-3"><i <a href="https://ctrlpanel.gg/docs/intro" class="btn btn-dark btn-block px-3"><i
class="fas fa-link mr-2"></i> {{__('Documentation')}}</a> class="fas fa-link mr-2"></i> {{__('Documentation')}}</a>
</div> </div>
<div class="col-md-3"> <div class="col-md-3">
<a href="https://github.com/ControlPanel-gg/dashboard" class="btn btn-dark btn-block px-3"><i <a href="https://github.com/CtrlPanel-gg/panel" class="btn btn-dark btn-block px-3"><i
class="fab fa-github mr-2"></i> {{__('Github')}}</a> class="fab fa-github mr-2"></i> {{__('Github')}}</a>
</div> </div>
<div class="col-md-3"> <div class="col-md-3">
<a href="https://controlpanel.gg/docs/Contributing/donating" class="btn btn-dark btn-block px-3"><i <a href="https://ctrlpanel.gg/docs/Contributing/donating" class="btn btn-dark btn-block px-3"><i
class="fas fa-money-bill mr-2"></i> {{__('Support ControlPanel')}}</a> class="fas fa-money-bill mr-2"></i> {{__('Support CtrlPanel')}}</a>
</div> </div>
</div> </div>
@ -199,7 +199,7 @@
<div class="card-header"> <div class="card-header">
<div class="d-flex justify-content-between"> <div class="d-flex justify-content-between">
<div class="card-title "> <div class="card-title ">
<span><i class="fas fa-server mr-2"></i>{{__('Controlpanel.gg')}}</span> <span><i class="fas fa-server mr-2"></i>{{__('Ctrlpanel.gg')}}</span>
</div> </div>
</div> </div>
<div class="card-body py-1"> <div class="card-body py-1">
@ -227,7 +227,7 @@
<p class="mb-2"> <p class="mb-2">
{{ __('You reached the Pterodactyl perPage limit. Please make sure to set it higher than your server count.') }}<br> {{ __('You reached the Pterodactyl perPage limit. Please make sure to set it higher than your server count.') }}<br>
{{ __('You can do that in settings.') }}<br><br> {{ __('You can do that in settings.') }}<br><br>
{{ __('Note') }}: {{ __('If this error persists even after changing the limit, it might mean a server was deleted on Pterodactyl, but not on ControlPanel. Try clicking the button below.') }} {{ __('Note') }}: {{ __('If this error persists even after changing the limit, it might mean a server was deleted on Pterodactyl, but not on CtrlPanel. Try clicking the button below.') }}
</p> </p>
<a href="{{route('admin.servers.sync')}}" class="btn btn-primary btn-md"><i <a href="{{route('admin.servers.sync')}}" class="btn btn-primary btn-md"><i
class="fas fa-sync mr-2"></i>{{__('Sync servers')}}</a> class="fas fa-sync mr-2"></i>{{__('Sync servers')}}</a>

View file

@ -43,7 +43,7 @@
<div class="form-group"> <div class="form-group">
<label for="identifier">{{ __('Server identifier') }} <label for="identifier">{{ __('Server identifier') }}
<i data-toggle="popover" data-trigger="hover" <i data-toggle="popover" data-trigger="hover"
data-content="{{ __('Change the server identifier on controlpanel to match a pterodactyl server.') }}" data-content="{{ __('Change the server identifier on ctrlpanel to match a pterodactyl server.') }}"
class="fas fa-info-circle"></i> class="fas fa-info-circle"></i>
</label> </label>
<input value="{{ $server->identifier }}" id="identifier" name="identifier" <input value="{{ $server->identifier }}" id="identifier" name="identifier"
@ -59,7 +59,7 @@
<div class="form-group"> <div class="form-group">
<label for="user_id">{{ __('Server owner') }} <label for="user_id">{{ __('Server owner') }}
<i data-toggle="popover" data-trigger="hover" <i data-toggle="popover" data-trigger="hover"
data-content="{{ __('Change the current server owner on controlpanel and pterodactyl.') }}" data-content="{{ __('Change the current server owner on ctrlpanel and pterodactyl.') }}"
class="fas fa-info-circle"></i> class="fas fa-info-circle"></i>
</label> </label>
<select name="user_id" id="user_id" class="form-control"> <select name="user_id" id="user_id" class="form-control">

View file

@ -11,7 +11,7 @@
class="mr-1">{{ config('app.name', 'Laravel') }}</b></a> class="mr-1">{{ config('app.name', 'Laravel') }}</b></a>
@if (config('SETTINGS::SYSTEM:ENABLE_LOGIN_LOGO')) @if (config('SETTINGS::SYSTEM:ENABLE_LOGIN_LOGO'))
<img src="{{ \Illuminate\Support\Facades\Storage::disk('public')->exists('logo.png') ? asset('storage/logo.png') : asset('images/controlpanel_logo.png') }}" <img src="{{ \Illuminate\Support\Facades\Storage::disk('public')->exists('logo.png') ? asset('storage/logo.png') : asset('images/controlpanel_logo.png') }}"
alt="{{ config('app.name', 'Controlpanel.gg') }} Logo" style="opacity: .8;max-width:100%"> alt="{{ config('app.name', 'Ctrlpanel.gg') }} Logo" style="opacity: .8;max-width:100%">
@endif @endif
</div> </div>
<div class="card-body"> <div class="card-body">

View file

@ -18,7 +18,7 @@
</li> </li>
<li> <li>
<p><strong>Company</strong> (referred to as either &quot;the Company&quot;, &quot;We&quot;, &quot;Us&quot; or <p><strong>Company</strong> (referred to as either &quot;the Company&quot;, &quot;We&quot;, &quot;Us&quot; or
&quot;Our&quot; in this Agreement) refers to controlpanel.</p> &quot;Our&quot; in this Agreement) refers to ctrlpanel.</p>
</li> </li>
<li> <li>
<p><strong>Cookies</strong> are small files that are placed on Your computer, mobile device or any other device <p><strong>Cookies</strong> are small files that are placed on Your computer, mobile device or any other device
@ -49,8 +49,8 @@
Service or from the Service infrastructure itself (for example, the duration of a page visit).</p> Service or from the Service infrastructure itself (for example, the duration of a page visit).</p>
</li> </li>
<li> <li>
<p><strong>Website</strong> refers to controlpanel, accessible from <a href="controlpanel" <p><strong>Website</strong> refers to ctrlpanel, accessible from <a href="ctrlpanel"
rel="external nofollow noopener" target="_blank">controlpanel</a></p> rel="external nofollow noopener" target="_blank">ctrlpanel</a></p>
</li> </li>
<li> <li>
<p><strong>You</strong> means the individual accessing or using the Service, or the company, or other legal <p><strong>You</strong> means the individual accessing or using the Service, or the company, or other legal

View file

@ -199,7 +199,7 @@
src="{{ \Illuminate\Support\Facades\Storage::disk('public')->exists('icon.png') ? asset('storage/icon.png') : asset('images/controlpanel_logo.png') }}" src="{{ \Illuminate\Support\Facades\Storage::disk('public')->exists('icon.png') ? asset('storage/icon.png') : asset('images/controlpanel_logo.png') }}"
alt="{{ config('app.name', 'Laravel') }} Logo" class="brand-image img-circle" alt="{{ config('app.name', 'Laravel') }} Logo" class="brand-image img-circle"
style="opacity: .8"> style="opacity: .8">
<span class="brand-text font-weight-light">{{ config('app.name', 'Controlpanel.gg') }}</span> <span class="brand-text font-weight-light">{{ config('app.name', 'Ctrlpanel.gg') }}</span>
</a> </a>
<!-- Sidebar --> <!-- Sidebar -->
@ -441,7 +441,7 @@
<strong>Copyright &copy; 2021-{{ date('Y') }} <a <strong>Copyright &copy; 2021-{{ date('Y') }} <a
href="{{ url('/') }}">{{ env('APP_NAME', 'Laravel') }}</a>.</strong> href="{{ url('/') }}">{{ env('APP_NAME', 'Laravel') }}</a>.</strong>
All rights All rights
reserved. Powered by <a href="https://controlpanel.gg">ControlPanel</a>. reserved. Powered by <a href="https://ctrlpanel.gg">CtrlPanel</a>.
@if (!str_contains(config('BRANCHNAME'), 'main') && !str_contains(config('BRANCHNAME'), 'unknown')) @if (!str_contains(config('BRANCHNAME'), 'main') && !str_contains(config('BRANCHNAME'), 'unknown'))
Version <b>{{ config('app')['version'] }} - {{ config('BRANCHNAME') }}</b> Version <b>{{ config('app')['version'] }} - {{ config('BRANCHNAME') }}</b>
@endif @endif