What is the way to change the logo in Laravel Nova4? I have checked the document but I can not find the way.
Asked
Active
Viewed 2,334 times
2 Answers
4
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
],

Pratik Kalathiya
- 56
- 2
-
2And it looks like only svg logo images are allowed by laravel nova version 4, other image formats are not supported – Pratik Kalathiya Sep 01 '22 at 16:20
-
Yes, Pratik is right, SVG is seems to be required, see my answer down below. – WebDev-SysAdmin Nov 24 '22 at 16:59
0
use SVG: I have not been able to get any other image file type to work. This will work (note I used the public_path function to get me into the right place):
'logo' => public_path('images/robLogo/logoLargerFinal.svg'),

WebDev-SysAdmin
- 269
- 4
- 12