How can we change the logo in Laravel Nova4?
Asked Answered
S

2

6

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

Smalls answered 1/9, 2022 at 14:54 Comment(0)
S
5

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
],
Spanjian answered 1/9, 2022 at 15:0 Comment(2)
And it looks like only svg logo images are allowed by laravel nova version 4, other image formats are not supportedSpanjian
Yes, Pratik is right, SVG is seems to be required, see my answer down below.Readership
R
1

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'),

    
 
Readership answered 24/11, 2022 at 16:59 Comment(0)

© 2022 - 2025 — McMap. All rights reserved.