What is Jetstream??Jetstream is not a package or administration dashboard that you will update in the future. It is a starter kit scaffolding for laravel and after installation the templates are yours to maintain. Now you can modified according to your requirement. The authentication portion of jetstream is powered by laravel fortify.
Use Jetstream if:1. You're familiar with Laravel Livewire, Inertia and Tailwind, or don't mind spending time learning them and;2. You want immediately start building the core functionality of your app without investing much time in boilerplate.
What is Laravel/ui??If you want to use laravel 8 with vue or react you can use it with laravel/ui package . I believe you already know about laravel/ui package. It provides a quick way to scaffold all of the routes and views you need for authentication and includes preset for Vue or React with bootstrap.
When to use Laravel/ui: You want to use vuejs , reactjs and bootstarp in your application.
What is Breeze??Laravel Breeze is small version of jetstream which provides you Auth system with laravel blade and Tailwind css. Laravel Breeze is the latest scaffold package released, offering a more up-to-date version of laravel/ui. It provides the same authentication functionality as laravel/ui, but uses Tailwind instead of Bootstrap, and does not include presets for Vue or React.Breeze does not use Fortify under the hood, but instead publishes controllers to your app so they're easier to modify (like the laravel/ui package).
When to use Breeze:1. You just want a more up-to-date laravel/ui.2. You'd like to modify the authentication functionality of your app quickly.3. You're building an app from the ground up that doesn't requires the features that Fortify or Jetstream provide.
Thankyou
What is Jetstream??
Jetstream is not a package or administration dashboard that you will update in the future. It is a starter kit scaffolding for laravel and after installation the templates are yours to maintain. Now you can modified according to your requirement. The authentication portion of jetstream is powered by laravel fortify.
Use Jetstream if:
1. You're familiar with Laravel Livewire, Inertia and Tailwind, or don't mind spending time learning them and;
2. You want immediately start building the core functionality of your app without investing much time in boilerplate.
What is Laravel/ui??
If you want to use laravel 8 with vue or react you can use it with laravel/ui package . I believe you already know about laravel/ui package. It provides a quick way to scaffold all of the routes and views you need for authentication and includes preset for Vue or React with bootstrap.
When to use Laravel/ui:
You want to use vuejs , reactjs and bootstarp in your application.
What is Breeze??
Laravel Breeze is small version of jetstream which provides you Auth system with laravel blade and Tailwind css. Laravel Breeze is the latest scaffold package released, offering a more up-to-date version of laravel/ui. It provides the same authentication functionality as laravel/ui, but uses Tailwind instead of Bootstrap, and does not include presets for Vue or React.
Breeze does not use Fortify under the hood, but instead publishes controllers to your app so they're easier to modify (like the laravel/ui package).
When to use Breeze:
1. You just want a more up-to-date laravel/ui.
2. You'd like to modify the authentication functionality of your app quickly.
3. You're building an app from the ground up that doesn't requires the features that Fortify or Jetstream provide.
Thankyou
Post a Comment