{"id":20266624,"url":"https://github.com/gasycoder/jetstream_laravel8","last_synced_at":"2025-07-04T16:36:30.123Z","repository":{"id":38163623,"uuid":"363945048","full_name":"GasyCoder/jetstream_laravel8","owner":"GasyCoder","description":"Laravel Jetstream Components VueJs: How to Customize \u0026 How it Works. ","archived":false,"fork":false,"pushed_at":"2023-02-01T22:35:06.000Z","size":1236,"stargazers_count":12,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-11T03:37:58.533Z","etag":null,"topics":["jetstream-laravel","laravel","laravel-package","vuejs"],"latest_commit_sha":null,"homepage":"https://gasycoder.com","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GasyCoder.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-05-03T13:49:26.000Z","updated_at":"2024-03-10T15:05:26.000Z","dependencies_parsed_at":"2024-11-14T12:10:36.404Z","dependency_job_id":null,"html_url":"https://github.com/GasyCoder/jetstream_laravel8","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/GasyCoder/jetstream_laravel8","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GasyCoder%2Fjetstream_laravel8","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GasyCoder%2Fjetstream_laravel8/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GasyCoder%2Fjetstream_laravel8/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GasyCoder%2Fjetstream_laravel8/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GasyCoder","download_url":"https://codeload.github.com/GasyCoder/jetstream_laravel8/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GasyCoder%2Fjetstream_laravel8/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263577269,"owners_count":23483132,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["jetstream-laravel","laravel","laravel-package","vuejs"],"created_at":"2024-11-14T12:10:32.678Z","updated_at":"2025-07-04T16:36:30.092Z","avatar_url":"https://github.com/GasyCoder.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1\u003eLaravel Jetstream\u003c/h1\u003e\n\u003cp\u003eLaravel 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.\u003c/p\u003e\n\n\u003cp\u003eJetstream is designed using Tailwind CSS and offers your choice of Livewire or Inertia scaffolding.\u003c/p\u003e\n\n\u003ch1\u003eInstalling Jetstream\u003c/h1\u003e\n\u003cp\u003eYou may use Composer to install Jetstream into your new Laravel project:\u003c/p\u003e\n\n\u003cpre\u003e\n\t\u003ccode\u003e\ncomposer require laravel/jetstream\n\t\u003c/code\u003e\n\u003c/pre\u003e\n\n\u003cp\u003eAfter 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.\u003c/p\u003e\n\n\u003cp\u003eYou are highly encouraged to read through the entire documentation of Livewire or Inertia before beginning your Jetstream project.\u003c/p\u003e\n\n\u003ch1\u003eInstall Jetstream With Livewire\u003c/h1\u003e\n\u003cpre\u003e\n\t\u003ccode\u003e\nphp artisan jetstream:install livewire\nphp artisan jetstream:install livewire --teams\n\t\u003c/code\u003e\n\u003c/pre\u003e\n\u003ch1\u003eOr, Install Jetstream With Inertia\u003c/h1\u003e\n\n\u003cpre\u003e\n\t\u003ccode\u003e\nphp artisan jetstream:install inertia\nphp artisan jetstream:install inertia --teams\n\t\u003c/code\u003e\n\u003c/pre\u003e\n\n\u003ch1\u003eFinalizing The Installation\u003c/h1\u003e\n\u003cp\u003eAfter installing Jetstream, you should install and build your NPM dependencies and migrate your database:\u003c/p\u003e\n\u003cpre\u003e\n\t\u003ccode\u003e\nnpm install\nnpm run dev\nphp artisan migrate\n\t\u003c/code\u003e\n\u003c/pre\u003e\n\n\u003ch1\u003eLivewire\u003c/h1\u003e\n\u003cp\u003eIf you are using the Livewire stack, you should first publish the Livewire stack's Blade components:\u003c/p\u003e\n\u003cpre\u003e\n\t\u003ccode\u003e\nphp artisan vendor:publish --tag=jetstream-views\n\t\u003c/code\u003e\n\u003c/pre\u003e\n\n\u003ch1\u003eAfter customizing these components, you should rebuild your assets:\u003c/h1\u003e\n\n\u003cpre\u003e\n\t\u003ccode\u003e\nnpm run dev or npm run watch\n\t\u003c/code\u003e\n\u003c/pre\u003e\n\n\u003ch1\u003eCheck this link to know more about Jetstream : \u003c/h1\u003e\n\u003ca href=\"https://jetstream.laravel.com/2.x/installation.html\"\u003eJetstream\u003c/a\u003e \n\u003cbr\u003e\n\n\u003ch3\u003eLicense\u003c/h3\u003e\nThe MIT License (MIT). Please see \u003ca href=\"https://github.com/bakateam/merakiui/blob/main/LICENSE\" target=\"_blank\"\u003eLicense File\u003c/a\u003e for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgasycoder%2Fjetstream_laravel8","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgasycoder%2Fjetstream_laravel8","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgasycoder%2Fjetstream_laravel8/lists"}