Questions tagged [jetstream]

Laravel Jetstream is an application starter kit for Laravel. Jetstream provides the following features for your application:

  • login
  • registration
  • email verification
  • two-factor authentication
  • session management
  • API via Laravel Sanctum

Documentation at jetstream.laravel.com.

480 questions
14
votes
2 answers

Laravel Jetstream Inertia Shared Global App Data

I want to share something I figured out since there's not much info out there (that I couldn't find). Laravel 8 with Jetstream Inertia has a few shared objects, like user, current route... You can access them in your components using the $page…
phoenix
  • 1,629
  • 20
  • 11
12
votes
3 answers

Performance of Nats Jetstream

I'm trying to understand how Nats Jetstream scales and have a couple of questions. How efficient is subscribing by subject to historic messages? For example lets say have a stream foo that consists of 100 million messages with a subject of…
d80tb7
  • 863
  • 2
  • 9
  • 20
12
votes
4 answers

All Inertia requests must receive a valid Inertia response, however a plain JSON response was received

i am trying to understand and resolve this InertiaJs error without success i hope i can get some help here.
Ismael Kourouma
  • 139
  • 1
  • 1
  • 6
11
votes
3 answers

Laravel 8 Jetstream: adding new field to the registration process

I started building a web application using Laravel 8. I have noticed that quite a lot of things have changed in Laravel 8 including authentication. Now, I am trying to use Jetstream for auth. I have run the following command to integrate it into the…
Wai Yan Hein
  • 13,651
  • 35
  • 180
  • 372
11
votes
19 answers

Laravel 8 Jetstream profile-photos not showing

Regarding Laravel 8 and jetstream I just tried installing and playing it in fortify but I can't really understand why my profile photo not showing a picture. update-profile-information-form
Khandoker Hirok
  • 316
  • 1
  • 2
  • 8
10
votes
3 answers

How to install Vuetify in Laravel 8 with jetstream-inertia?

I'm trying to install Vuetify on the latest Laravel versione (8) but I cannot do it. Seems it doesn't work even if the console doesn't show me any error. That's my resource/plugins/vuetify.js import Vue from 'vue' // import Vuetify from…
netnull
  • 201
  • 1
  • 3
  • 13
9
votes
3 answers

Tailwindcss @apply directive doesn't work inside vue component

I create a laravel application with jetstream and inertia-vue stack for my new project problem is Tailwindcs version 2 using postCss and it doesn't support @apply directive inside vue components but inside .css file it works fine I don't want that…
Shekh Saifuddin
  • 470
  • 2
  • 6
  • 27
9
votes
4 answers

Laravel 8.15.0/Jetstream - How to register new blades x-jet-newblade?

I am just doing my very first steps with Laravel 8 and found a problem that I can not solve. /var/www/html/laravel/resources/views/dashboard.blade.php:
operator
  • 95
  • 1
  • 6
8
votes
12 answers

JetStream CSS and JS not working and showing @vite(['resources/css/app.css', 'resources/js/app.js'])

**I installed livewire ,laravel mix and jetstream on laravel 8. But the Jetsream's css and js is not working and shows a message in header that '@vite(['resources/css/app.css', 'resources/js/app.js'])' ** App.blade.php
Nazmul Anik
  • 95
  • 1
  • 2
  • 8
8
votes
1 answer

Does NATS Jetstream provide message ordering by a key?

I am new to NATS Jetstream and I have been reading their official documentation (https://docs.nats.io/jetstream/jetstream) to understand its concepts and compare it with Kafka. One of the major use cases I have, is to solve for message/event…
User_Targaryen
  • 4,125
  • 4
  • 30
  • 51
8
votes
1 answer

Installing Teams support in Laravel Jetstream after initial install

If I already have an existing Laravel Jetstream (Inertia) project which was installed without the --teams option is there a way to go back and install support for teams given that I have already created multiple controllers, models, migrations and…
Joseph
  • 2,737
  • 1
  • 30
  • 56
8
votes
5 answers

How to change Jetstream logo in Laravel 8?

I installed Laravel 8 with Jetstream authentication. Now I want to change the login components, specifically the logo. Where are these components placed?
skm
  • 1,650
  • 2
  • 10
  • 17
7
votes
0 answers

NATS Object Store or Key Value Store vs Redis Cache

We are currently using Redis behind NATS to do caching which is a standard practice. However, I have come across this idea that we can take advantage of the Object Store or Key Value features in NATS to implement caching natively. However, I know…
Arnold Zahrneinder
  • 4,788
  • 10
  • 40
  • 76
7
votes
2 answers

How to integrate Spatie's laravel-permission with JetStream properly?

I have a nicely working basic install of Laravel JetStream and Spatie's laravel-permission in Laravel 8. I can assign a role to the user during registration via $user->assignRole('visitor'); return $user; and can restrict the available menu items…
7
votes
4 answers

how can I use bootstrap instead of tailwind CSS in vue.js welcome component

I install jetstream+inertia.js into my laravel project and everything is working perfectly but I need to use bootstrap 5 in only welcome. vue component so how can I handle it? My app.js file; require('./bootstrap'); // Import modules... import…
ORHAN ERDAY
  • 1,020
  • 8
  • 31
1
2 3
31 32