Merge pull request #215 from Boy132/remove-brandName

Remove hardcoded brandName
This commit is contained in:
Lance Pioch 2024-05-14 00:55:51 -04:00 committed by GitHub
commit 7efa04f1ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View File

@ -36,7 +36,6 @@ class AdminPanelProvider extends PanelProvider
->id('admin')
->path('admin')
->login()
->brandName('Pelican')
->homeUrl('/')
->favicon('/pelican.ico')
->profile(EditProfile::class, false)

View File

@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Facade;
return [
'name' => 'Pelican',
'name' => env('APP_NAME', 'Pelican'),
'version' => 'canary',