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
0
votes
2 answers

Laravel Singleton still creating new objects

I have a singleton setup in my AppServiceProvider.php, such as this: public function boot() { $this->app->singleton(Breadcrumbs::class, function($app){ return new Breadcrumbs(); }); View::composer(['partials.*'],…
David B
  • 400
  • 2
  • 15
0
votes
1 answer

Laravel 8 Dusk: testing login using Jetstream and Inertia JS is not working

I am working on a Laravel 8 project. I have noticed that a couple of things have changed in the Laravel 8 including authentication. I am using Jetstream and Intertia JS for authentication and admin panel. I am now having trouble writing Browser test…
Wai Yan Hein
  • 13,651
  • 35
  • 180
  • 372
0
votes
3 answers

Livewire How to set the width of jetstream dialog-modal?

I am using the dialog-modal of Jet-Stream, it works pretty fine but I don't understand how to fix its width. Here below is the way I use it. {{…
Meaulnes
  • 357
  • 6
  • 20
0
votes
0 answers

Laravel 8 default root route not working after route:cache

Getting this error when accessing default '/' route on laravel 8 after doing route:cache Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException The GET method is not supported for this route. Supported methods: HEAD. Any idea why? all…
0
votes
1 answer

Laravel Jetstream modal doesn't appear

I'm trying to re-use the Jetstream Dialog Modal, but it doesn't seem to work. Here is the sample taken from the official docs