Add default logo and make it configureable via env variable
This commit is contained in:
parent
f561332507
commit
642aef33bd
3 changed files with 10 additions and 1 deletions
|
|
@ -15,6 +15,14 @@ return [
|
||||||
|
|
||||||
'name' => env('APP_NAME', 'Bingo'),
|
'name' => env('APP_NAME', 'Bingo'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Application Logo
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
'logo' => env('APP_LOGO', 'default'),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Application Environment
|
| Application Environment
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,8 @@ return [
|
||||||
|
|
||||||
'links' => [
|
'links' => [
|
||||||
public_path('storage') => storage_path('app/public'),
|
public_path('storage') => storage_path('app/public'),
|
||||||
public_path('img') => resource_path('images')
|
public_path('img') => resource_path('images'),
|
||||||
|
public_path('img/logo.png') => resource_path(sprintf('logos/%s.png', config('app.logo')))
|
||||||
],
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
||||||
BIN
resources/logos/default.png
Normal file
BIN
resources/logos/default.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 26 KiB |
Loading…
Add table
Add a link
Reference in a new issue