460 questions
0
votes
0
answers
60
views
Laravel 12.0 Jetstream 5.3 "remember me" not working
I am having a problem with the remember me functionality in my app. When users log in they can check the box and it will work for a while but after a few hours/days (I haven't timed it exactly) they ...
1
vote
2
answers
79
views
How to set current_team_id when user accepts Jetstream team invitation by email to the Team id of the Admin inviting him?
I am developing an App that uses Jetstream registration as well as teams. With my App users join App once and they stay, so I need set current_team_id to user when he/she accepts invitation via email.
...
0
votes
1
answer
103
views
Laravel Jestream problem loading Vite manifest
I have a Laravel 10 app with Jetstream working perfect on local.
When I upload my app to a cpanel shared hosting, when I access to the pages I have created, I have no problem, but when I try to load ...
0
votes
1
answer
138
views
2 laravel projects communicating using API Sanctum?
I have two laravel projects
Bac4 laravel v.8
InfraProject laravel v.9
I want them to communicate using the Laravel Sanctum API.
I want the InfraProject to access some data in the Bac4 project and ...
0
votes
0
answers
27
views
Laravel Jetstream: Does not update custom additional profile information
I customized the app\Actions\Fortify\UpdateUserProfileInformation.php file with new fields.
There is a ZIP code search performed with JQuery, but when there is a change of address, the new data is not ...
2
votes
0
answers
193
views
Is it possible to install Laravel Jetstream with Typescript?
Is it possible to install Laravel Jetstream with Typescript instead of Javascript when you are installing it with Inertia/Vue?
I saw that they have it with Breeze but I can't find it for Jetstream.
If ...
0
votes
1
answer
628
views
Use filament 3 jetstream
How to use filament 3 jetstream with blade and livewire ?
I used below commands.
composer require laravel/jetstream
composer require filament/filament
php artisan jetstream:install livewire
npm ...
2
votes
1
answer
311
views
Laravel email verification URL redirect to 404
I want to use a custom template for verification emails being sent by Laravel 11. It generates a verification url, but when I click it, it shows 404 on the browser.
Below is my user model where I ...
1
vote
2
answers
365
views
Flash message not displaying when redirecting to the same page in Laravel Jetstream + Inertia
I'm having an issue with displaying flash messages in my Laravel Jetstream application using Inertia.js. Here is the relevant code:
In AppLayout.vue
<script setup>
import { usePage } from "@...
2
votes
1
answer
397
views
Error with postcss.config.js when installing Laravel Jetstream with Livewire
I am trying to install Jetstream in a Laravel project. Immediately after running the command php artisan jetstream:install livewire, this error appears:
`C:\xampp\htdocs\PFE\PFE\postcss.config.js:1
...
-1
votes
1
answer
113
views
bugged dropdown in laravel 10 jetstream/livewire
image
This is the admin side, when on the home page the theme of the web is white and it is fine there, I'm guessing it's because it is assigned to multiple css tag influencing the same part but I ...
0
votes
0
answers
59
views
How to redirect after sign up laravel jetstream
On laravel jetstream, after I changed the line ('home' => '/dashboard',) to ('home' => '/dashboard',) in fortify file. When I sign up successfull, the system do not direct me to index page, it ...
-2
votes
2
answers
849
views
Resolving the 'Class does not exist' error in Laravel 10 [closed]
I'm new to Laravel 10, and I recently installed Jetstream. When I run php artisan route:list in the console, I get the following error: Class "verified" does not exist.
I do have verified in ...
1
vote
1
answer
309
views
How to modify Laravel Jetstream login ? I'd like user to redirect to Admin Dashboard when usertype is 1
I'm using Larave10 Jetstream livewire and I wanna modify the login.
But my code doesn't work properly what I thought.
This is user database.
Id, name:varchar(255), email:varchar(255), usertype:varchar(...
0
votes
1
answer
2k
views
Laravel Livewire loading after Alpine.js after Update
I get the following error with a modal component on the profile page:
Console:
Uncaught TypeError: window.Livewire.find(...) is undefined
After the page is fully loaded, I can access livewire in the ...
1
vote
2
answers
382
views
wire:navigate causes conflicts in my template
I have a template called Minia that includes everything (js, tailwind, jetstream, livewire). However, when I add the wire:navigate to some link, it takes me to the view without loading the page and it ...
0
votes
1
answer
359
views
Laravel Jetstream redirects when trying to access an API endpoint
When I try to access an endpoint in my Laravel API, Jetstream redirects to the dashboard page. I am already logged in, and when I go to my endpoint from the dashboard, it goes back to the dashboard. I ...
0
votes
1
answer
53
views
Laravel 10 jerstream - redirect back doesn't work
I am using Laravel 10 with PHP 8.1
The issue that redirect back is not working, it's redirecting me to home only.
even in the core functions i need to manipulate it like login i added:
throw ...
0
votes
1
answer
169
views
Laravel Jetstream 4.1 Issue with Agent.php (MobileDetect/PSR) cache not functioning correctly
In the new Agent.php (Laravel Jetstream 4.1) that uses MobileDetect, specifically the cache set/get functionality seems to be broken.
I modified the retrieveUsingCacheOrResolve function in Agent.php ...
0
votes
2
answers
454
views
Laravel 10 Jetstream | Livewire path error 404
I just installed Laravel 10 under WAMP and it works fine.
Then I installed Jetstream but login/ registration pages fail because Livewire path is wrong. How do I fix it ? Can't find it in .env
The ...
-1
votes
1
answer
96
views
Target class [GoogleAdsApiController] does not exist
I am trying to replicate the Google Ads API Laravel Sample app and port it to a Laravel Jetstream application.
I keep getting the following error: Target class [GoogleAdsApiController] does not exist.
...
0
votes
1
answer
663
views
How do I customise controller actions in Laravel Jetstream?
I would like to add some data for the Create vue file for the teams feature in Laravel Jetstream, but I haven't seen a way how to publish the vendor controllers. Essentially what I am trying to do is, ...
0
votes
0
answers
323
views
How can I edit the default behavior of jetstream's email verification on Laravel
I recently created a Laravel project with Jetstream and Livewire implemented and I want change the behavior of the email verification feature after login or registration such that rather than ...
0
votes
1
answer
622
views
Install jetstream and livewire in laravel 8
I am using PHP 7.3, Laravel 8.0, Node version 13.13.0 and NPM version 6.14.4.
When I install Jetstream v2.9 and Livewire, the CSS in the login and register page has broken.
I used below command's :
...
0
votes
0
answers
374
views
Permissions with JetStream Laravel
I have recently started using Laravel at my internship and have developed a website in which employees within the company can register their profiles (which are displayed on one page) and upload ...