Fetaures

Jetstream makes your application into the next level.

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.

Jetstream is designed using Tailwind CSS and offers your choice of Livewire or Inertia scaffolding.

Note: You can simply handle this features using comment or uncomment the code.
Like if you don't want to use user profile photo feature just comment it in below files.

Tailwick provides below Jetstream features in this application.

👉 Features:
  • API
  • Authentication
  • Registration
  • Profile Management
  • Team Management
  • Password Update
  • Password Confirmation
  • Two Factor Authentication
  • Two Step Verification
  • Browser Sessions

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
'features' => [ Features::registration(), Features::resetPasswords(), // Features::emailVerification(), Features::updateProfileInformation(), Features::updatePasswords(), Features::twoFactorAuthentication([ 'confirm' => true, 'confirmPassword' => true, // 'window' => 0, ]), ], 'features' => [ Features::termsAndPrivacyPolicy(), Features::profilePhotos(), Features::api(), Features::teams(['invitations' => true]), Features::accountDeletion(), ],