Other Settings

1. How to change favicon in Velzon Laravel + Vue?

If you have .ico file then just replace in public/image/ eighter copy the icon and put the same location. and change the image name in resources/views/app.blade.php. like below.

<!-- App favicon -->
<link rel="shortcut icon" href="{{ URL::asset('image/favicon.ico') }}">
2. How to change application title?

If you want to change your application title just change in resources/js/app.js and resources/views/app.blade.php. That's it !

3. How to enable disable Jetstream features?

Laravel Jetstream's architecture is a little different from other Laravel application starter kits such as Laravel Breeze. In this documentation, we'll cover some of the high-level concepts that will help you understand how Laravel Jetstream is constructed.

Velzon Jetstream provides below features in this app:

To enable or disable the Jetstream features, We have two config files inside config/ folder. Note: You will get these files after installing Jetstream :)

  • fortify.php
  • jetstream.php
fortify.php

'features' => [
Features::registration(),
Features::resetPasswords(),
// Features::emailVerification(),
Features::updateProfileInformation(),
Features::updatePasswords(),
Features::twoFactorAuthentication([
// 'confirm' => true,
'confirmPassword' => true,
]),
],
                                            
jetstream.php

'features' => [
// Features::termsAndPrivacyPolicy(),
// Features::profilePhotos(),
// Features::api(),
Features::teams(['invitations' => true]),
Features::accountDeletion(),
],
                                            

You can simply handle this features using comment or uncomment the following. like if you don't want to use user profile photo just comment it in jetstream.php.

You can have any other questions, feel free to contact us via support@themesbrand.com.

© Velzon.
Design & Develop by Themesbrand