https://github.com/gasycoder/jetstream_laravel8
Laravel Jetstream Components VueJs: How to Customize & How it Works.
https://github.com/gasycoder/jetstream_laravel8
jetstream-laravel laravel laravel-package vuejs
Last synced: 12 months ago
JSON representation
Laravel Jetstream Components VueJs: How to Customize & How it Works.
- Host: GitHub
- URL: https://github.com/gasycoder/jetstream_laravel8
- Owner: GasyCoder
- Created: 2021-05-03T13:49:26.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-01T22:35:06.000Z (over 3 years ago)
- Last Synced: 2025-04-11T03:37:58.533Z (about 1 year ago)
- Topics: jetstream-laravel, laravel, laravel-package, vuejs
- Language: Vue
- Homepage: https://gasycoder.com
- Size: 1.18 MB
- Stars: 12
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Laravel Jetstream
Laravel Jetstream is a beautifully designed application starter kit for Laravel and provides the perfect starting point for your next Laravel application. Jetstream provides the implementation for your application's login, registration, email verification, two-factor authentication, session management, API via Laravel Sanctum, and optional team management features.
Jetstream is designed using Tailwind CSS and offers your choice of Livewire or Inertia scaffolding.
Installing Jetstream
You may use Composer to install Jetstream into your new Laravel project:
composer require laravel/jetstream
After installing the Jetstream package, you may execute the jetstream:install Artisan command. This command accepts the name of the stack you prefer (livewire or inertia). In addition, you may use the --teams switch to enable team support. The jetstream:install command will also install a suite of "feature" tests that provide test coverage for the features provided by Jetstream.
You are highly encouraged to read through the entire documentation of Livewire or Inertia before beginning your Jetstream project.
Install Jetstream With Livewire
php artisan jetstream:install livewire
php artisan jetstream:install livewire --teams
Or, Install Jetstream With Inertia
php artisan jetstream:install inertia
php artisan jetstream:install inertia --teams
Finalizing The Installation
After installing Jetstream, you should install and build your NPM dependencies and migrate your database:
npm install
npm run dev
php artisan migrate
Livewire
If you are using the Livewire stack, you should first publish the Livewire stack's Blade components:
php artisan vendor:publish --tag=jetstream-views
After customizing these components, you should rebuild your assets:
npm run dev or npm run watch
Check this link to know more about Jetstream :
Jetstream
License
The MIT License (MIT). Please see License File for more information.