I set up a fresh Laravel 10 project and installed Jetstream. Everything works fine basically, but I noticed that the command
php artisan vendor:publish --tag=jetstream-views
It fails with the error INFO No publishable resources for tag [jetstream-views].
if I fetch the whole list by using
php artisan vendor:publish
It does not appear on the list.
I found another user who had posted this same question (slightly edited it, but I have the same issue). but he received a 'post this in a new thread' response. He hasn't done that, but I need an answer too, so here I am :)
You can check this link
https://jetstream.laravel.com/3.x/installation.html
Application Logo
After installing Jetstream, you may have noticed that the Jetstream logo is utilized on Jetstream's authentication pages as well as your application's top navigation bar. You may easily customize the logo by modifying a few Jetstream components.
#Livewire
If you are using the Livewire stack, you should customize the SVGs located in the following Blade components:
resources/views/components/application-logo.blade.php
resources/views/components/application-mark.blade.php
resources/views/components/authentication-card-logo.blade.php
#Inertia
If you are using the Inertia stack, you should customize the SVGs located in the following Vue components:
@adilrazashaikh Well, to customize the logo isn't the problem. We have "first name" and "last name" and not just the "name," and with this approach, I can throw everything away or manually recreate all the components my own way, which I found a pretty stupid approach...
If you're using Jetstream v3.x with Livewire then all customizable components can be found under your application's resources/view/components directory.
The: "php artisan vendor:publish --list" has been depreciated