diff --git a/config/app.php b/config/app.php index ea0eca8..992fcf8 100644 --- a/config/app.php +++ b/config/app.php @@ -15,6 +15,14 @@ return [ 'name' => env('APP_NAME', 'Bingo'), + /* + |-------------------------------------------------------------------------- + | Application Logo + |-------------------------------------------------------------------------- + */ + + 'logo' => env('APP_LOGO', 'default'), + /* |-------------------------------------------------------------------------- | Application Environment diff --git a/config/filesystems.php b/config/filesystems.php index 820621d..7734c31 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -73,7 +73,8 @@ return [ 'links' => [ 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'))) ], ]; diff --git a/resources/logos/default.png b/resources/logos/default.png new file mode 100644 index 0000000..bdaa283 Binary files /dev/null and b/resources/logos/default.png differ