Home > Net >  How can we change the logo in Laravel Nova4?
How can we change the logo in Laravel Nova4?

Time:09-02

What is the way to change the logo in Laravel Nova4? I have checked the document but I can not find the way.

CodePudding user response:

To customize or change logo in laravel nova version 4, you need to define logo path in your app/config/nova.php file like this

'brand' => [
    'logo' => 'images/logo.svg' // What ever your logo path in your project
],
  • Related