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

Jetstream laravel on ubuntu 20.04

how can I create laravel project with jetstream on ubuntu 20.04. On their official page I need to run this command: composer require laravel/jetstream Before this I configured environment for laravel and got installed laravel installer globally.…
0
votes
2 answers

The photo failed to upload. Laravel Jetstream

Getting a 401 (Unauthorized) on the dashboard while trying to upload a profile picture. App URL is set properly and the feature is uncommented. the console which shows a post request to site.com/livewire/upload-file is showing unauthorized and the…
Tony Ash
  • 3
  • 2
0
votes
1 answer

Laravel Jetstream Inertia non authorised route

I have a fairly stock install of the Laravel, jetstream inertia js setup as shown here https://jetstream.laravel.com/2.x/installation.html using command php artisan jetstream:install inertia --teams I want to show the dashboard to non logged in…
Jamie
  • 26
  • 6
0
votes
2 answers

custom transition classes don't work on Vue.js

I'm trying to use some transition in my code using Vue.js with Tailwinds. My environment include Laravel Jetstream with Inertia that comes with vue. I notices that using this form everything work:
0
votes
1 answer

How do I delete a certain field in a different table when the user deletes his account?

I have a problem when a user deletes his account, but a list that he created still exists, how do I delete the list when the user deletes his account? I use jetsream laravel for auth. The following is the list table that I want to delete based on…
0
votes
1 answer

laravel 8 jetstream with Inertia.js Stack not updating the profile information

I am using laravel 8 with jetstream with Inertia.js Stack. My database field names are in snake_case and I used camelCase inside the template. I added new fields as Test, About, Display Name and Points to the profile. I can successfully save the…
sadee
  • 1
  • 1
0
votes
1 answer

whay Laravel jetstrem logout 419 problem?

when logout from dashboard has logout successfully but click back button then enter dashboard, logout from dashboard then browser back button click and enter dashboard without email and password then turn click logout show error page expired 419
0
votes
1 answer

Laravel Jetstream Update not being triggered from form and instead redirecting to wrong page

I have been attempting to get a form to update the database that already exists. I have effectively copy and pasted the fully working code from my create blade to my edit blade and it has a weird issue where instead of editing the database it seems…
Xavier
  • 11
  • 4
0
votes
0 answers

Passing a parameter and redirect in Laravel 8 with Jetstream and Livewire

How do you pass a parameter from Livewire PHP page and redirect to register.blade view? I'm using build in Laravel login and register template and I need to populate the email address field on the register page. I'm using Laravel 8 with…
0
votes
1 answer

Laravel 8 with Jetstream no style and js appeared

I just installed jetstream on a laravel 8 empty, when i try to connect myself on the login page, the style and the js doesnt appear. I tried to delete the vendor folder and do the composer install command and nothing changed. If you want to see :…
Nevets08
  • 11
  • 2
0
votes
2 answers

I can't install Jetstream: [InvalidArgumentException]Package laravel/jetstream

I can't install Jetstream to my Laravel project. When I use the command composer require laravel / jetstream, it will generate the following error: [InvalidArgumentException] The laravel / jetstream package has a PHP requirement incompatible with…
ndu
  • 7
  • 2
0
votes
0 answers

Laravel 8 Fortify Livewire Custom Redirect Redirect after Login or Register

I am using Laravel, Jetstream and Livewire. I have two user type. I want to redirect after Login and Register to there own dashboard. How can i achieve this? In older version i used something like this: public function redirectTo() { if…
Nasir Khan
  • 753
  • 1
  • 9
  • 22
0
votes
0 answers

in laravel homstead project npm install get error

My operating system is windows 10. I'm using laravel homestead (ubuntu 18.04) resent release and working in a virtual box with vagrant. After installing Laravel when I try to run: composer require laravel/breeze --dev to get the Authenticate part it…
0
votes
6 answers

Install Laravel 8 without Jetstream

Is there any chance to install Laravel 8 without Jetstream? I want to use Laravel 8 + Inertiajs + Vue.js + Tailwind. Unfortunately Orchid admin panel compatible just with Laravel 8; that's why I have to use Laravel 8.
StevanBurn
  • 27
  • 8
0
votes
0 answers

Dynamically create new role for Jetstream Teams

I know this is a vauge question. I also know that roles and permission of Laravel Jetstream Teams are under JetstreamProvider where you can hardcoded new or edit a role. I just can't help myself how to do it dynamically via a web portal. Do you have…