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

Laravel Livewire: datepicker input is erased and cannot be submitted

Laravel8, Jetstream, Livewire. Installed normally and adding usual CRUD functions. So far so good, until I noticed the following problem after I added Alpine.js and Pikaday to the form. Pikaday works fine when clicked and the selected date is set…
mmrn
  • 249
  • 2
  • 8
  • 18
0
votes
2 answers

laravel8 jetstream & fortify. want to set different redirection after register and login

i found 'home' => RouteServiceProvider::HOME, in config/fortify.php what i want to do is when user completed register user, redirect to /user/complete when user logged in, redirect to /dashboard now, both of them redirect to /dashboard (strictly…
gattoman
  • 33
  • 1
  • 7
0
votes
2 answers

computed vue js does not work with inertia

computed vue js does not work with inertia I have a fresh installation of laravel with jetstream which uses inertia, and the computed properties do not work computed: { compupares: function () { var sum = Number…
0
votes
1 answer

Laravel 8 Jetstream / livewire. Have Password reset form accept username instead of email

It was easy enough to rem out the email field and add a username field. (After allit work with the loginview) It is using the username field for authentication just fine and I did the same thing. \resources\views\auth\reset-password.blade.php ``` …
0
votes
1 answer

Vuejs Certain Components Not Building

It's the strangest phenomenon that I am experiencing now. I have been creating a few components for my application (Using Laravel Jetstream, Inertia Stack) so I am using VueJS. Everything is going fine and then I make a new comonent in the same…
Tim Rowley
  • 420
  • 4
  • 15
0
votes
1 answer

Laravel Jetstream Photo Max Size

New to PHP and Laravel but fighting through it. I am using Laravel 8 with Jetstream. Now, when Uploading a new Profile-Picture in the Edit-Section of the Frontend, the Frontend only accepts files <1MB. Checked my PHP.ini and it is set to 100M - so,…
0
votes
1 answer

User profile image can not show in laravel 8

I'm using laravel 8. I have used jetstream for user registration. Profile photo feature is being used, But it did not show profile image. I help from you good people. #coding
user11075777
0
votes
1 answer

Laravel | Why is the id missing in a eloquent model?

We are customizing our key to use a unique identifier in our routing. So this http://127.0.0.1:8000/TEAMS/1 ends up like this http://127.0.0.1:8000/TEAMS/91e11f44-2d89-4b5e-83e0-5cb92d0c0ebd This works great but unfortunately we're getting an…
Matthias
  • 3,729
  • 22
  • 37
0
votes
1 answer

Laravel Jetstream Adding Google Analytics

I am struggling to get Google Analytics to report correctly using the InertiaJS stack of Laravel Jetstream. I need to track individual page visits but since it's a SPA I'm unsure how to go about this. I have placed the tag in my app.blade but that…
Tim Rowley
  • 420
  • 4
  • 15
0
votes
1 answer

Using stacks in Laravel 8

I'm building a site using Laravel 8 and Jetstream. Jetstream is opinionated about the javascript / css framework, which is great, but I'm needing to add an external javascript library to one of my components, and I don't see anywhere to add them in…
user101289
  • 9,888
  • 15
  • 81
  • 148
0
votes
0 answers

Layout is broken after login or logout, Laravel and Vue.js

I am developing an application using Vue.js and Laravel JetStream. My problem is that when i login the layout of the main page is broken and after the refresh it fixes: This is how it should look: This also happens when I logout from this layout,…
memeister
  • 53
  • 5
0
votes
1 answer

How could I change the reset password VIEW that's been sent through email?

I want to change the aspect of the html view that jetstream sends through an email to the user's email inbox for the user to reset the password.I cant seem to find the blade file. Does anyone knows where it might be? or how could i change this file?…
0
votes
1 answer

Getting id value from url in controller and displaying values associated laravel

I'm trying to create a ticket management system with laravel jetstream and livewire. In the user page there's a table with all tickets that the user created. When the user clicks on the button to open one specific ticket, it should pass the id of…
Nayana
  • 127
  • 1
  • 13
0
votes
1 answer

Adding hCaptcha to Laravel Jetstream (Inertia.js)

I'm using Laravel 8 - Jetstream 2.0 with the Inertia stack. I installed the Vue hCaptcha component https://github.com/hCaptcha/vue-hcaptcha The Vue component is already in my login form and looks good. Vue component is working then I followed this…
ThcDelux3
  • 11
  • 4