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
1 answer

How to redirect failed validate on register to an url with anchor in laravel jetstream fortify

If I change validate by validator->fails return redirect..... I get error because login want an instance of $user and I send a response. This defaults work well but not for me public function create(array $input) { Validator::make($input, [ …
gaston
  • 3
  • 2
0
votes
3 answers

Laravel Echo + Pusher Authorization Server Error 500

I'm trying to test and learn laravel's broadcasting with echo. But after trying and trying I can't achieve what I want. It works with public channel channel. But when it comes to presence channels it doesnt. For solving error I did: Increasing php…
0
votes
0 answers

Laravel jetstream can't modify register blade

after i installed jetstream to my laravel project, i found that the auth folder is located in "vendor\laravel\jetstream\stubs\livewire\resources\views\auth" which was suppose to be located in "ressources\views" and i can't modify the blades to add…
Wassef Hassine
  • 282
  • 7
  • 26
0
votes
1 answer

Vue dynamic v-model generating extra array item with null value

I am working on inertia laravel to update data from Vue inline table input, this is jet-stream input field component. item.id is my database increment id. data() { return { …
0
votes
1 answer

i am trying to design Laravel 8 login page but i am not able to find login page

I am trying to design Laravel 8 login page but not found where is it. I am use Laravel 8 and AUTH package is " Jetstream inertia " below page are customize but not changes…
joshi yogesh
  • 17
  • 1
  • 6
0
votes
2 answers

Is there a built-in way to remove account enumeration from registration?

I have created a new site using Jetstream and Inertia. Currently the application will return a "The email has already been taken." message if a user tries to register with an existing email. Notwithstanding timing analysis, I would like to keep the…
Kley
  • 1
  • 2
0
votes
0 answers

Target class [Laravel\Jetstream\Http\Middleware\AuthenticateSession] does not exist. why am i getting this error

Illuminate\Contracts\Container\BindingResolutionException Target class [Laravel\Jetstream\Http\Middleware\AuthenticateSession] does not exist. I installed jetstream on my Laravel project and got this error. Does anyone know the cause of the error?
0
votes
1 answer

Vue.js 3 - Add list items from component dynamically

I am new to vue, I found some examples but I could not reproduce in my situation. I have some inputs user will fill out and once it clicks the button, the information will populate a list of items. I am trying to crete < li > with a OrderListItem…
Jessica Thedoc
  • 102
  • 2
  • 9
0
votes
1 answer

redirect to localized route after login in laravel 8

I am using localized routes in laravel 8 application everything works fine, how can I change the redirect HOME variable in RouteServiceProvider:20 to include the route {locale} parameter in HOME variable? Currently it redirects to…
Ya Basha
  • 1,902
  • 6
  • 30
  • 54
0
votes
1 answer

Laravel Jetstream Fortify force SSL or HTTPS

I developed a website with a login part using Jetstream (with Fortify) to authenticate the users. In the local environment, it works fine. The production environment (via Elastic Beanstalk on AWS) does not work with the SSL certificate. To let…
0
votes
1 answer

whats the best way to consume and commit by batch with nats jetstream

i need to consume stream from jetstream by batch and store bulk in database with acknowledgment after database bulk insert, at this time i use pull consumer, store all messages and commit 1 by 1 on successfull bulk insert. Do i need to ack all…
erich
  • 71
  • 6
0
votes
1 answer

I want to install Laravel Jetstream with inertia-vue2

So is it possible to install Jetstream with Inertia-Vue2? php artisan jetstream:install inertia
Ismael Kourouma
  • 139
  • 1
  • 1
  • 6
0
votes
0 answers

I am facing a problem in showing an image in my crud table in laravel livewire

This is my create function which store Client Logo in database public function create() { $this->pictures->store('pictures'); $this->clientlogo->store('clientlogo'); $this->validate(); mprojectm::create($this->modelData()); …
Akash
  • 1
0
votes
1 answer

Laravel Jestream how to add external javascript

I want to include this Summernote rich text editor in Laravel Jetstream Livewire Alpine. I tried to extend the possibility to include additional Javascript and CSS by using the @stack() directive, right in the layouts/app.blade.php file:
Pathros
  • 10,042
  • 20
  • 90
  • 156
0
votes
2 answers

problem while converting jetstream to react

while converting vue files in jetstream to react.js files i found # in template tag I think it's related to Laravel component but I don't know how to write it in react.js component. in Vue