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 the default app layout. So I added a stack for the ..
Category : jetstream
Hi i want to install harmonic / laravel-preset on my project to use Inertia-table but i have an error if someone can help me. As a reminder, I saw in the documentation that it is not preferable to install on an existing project but I want to use a datatable for my Laravel-Jetstream project enter ..
enter image description here page expired 419 appears when in production. I’ve tried to run php artisan clear:cache, php artisan config:cache, php artisan key:generate, and also change the SESSION_DOMAIN with the same domain, but the page still error if I deactivate the CSRF middleware it doesn’t have an error, but I can’t go to the ..

I am having laravel project version 8.23 with the jetstream PFA image below How to disable this part in the jetstream Sourc..

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, If I login and land on another page the ..
i want to redirect back with an error message in laravel. im currently using laravel 8 and inertia 0.8.2. here is what i want to do: try { $center->delete(); } catch (IlluminateDatabaseQueryException $e) { if ($e->errorInfo[0] == ‘23000’) return Redirect::back()->with(‘error’, ‘hey you cant do this bla bla…’); } and in inertia: <jet-error-message :message="error"></jet-error-message> i cant ..
I have used socialite in Laravel 7 and I know its quite simple, but I am kind of new to vue and with Laravel 8, Inertia and Jetstream all the auth gets taken care of with vue authentication… right? I would just like some orientation on what should I look into, I haven’t found any ..
So I just installed Laravel Jetstream and right after reloading my laravel page this is what I get on the screen. This is the exact error I’m getting ERROR I haven’t really touched anything, I just installed Laravel Jetstream and whenever I load into my localhost I see that piece of code right there. The ..
i am working on my new project and technology stack is: laravel 8 + Livewire V2 + Jetstream, to create a single page application (SPA). but I am still confused if its possible SPA in my selected technology stack or not. I know Livewire no longer supports Turbolinks out of the box so they provided ..
I’m using the Inertia version of Laravel Jetstream. I have everything configured and working. I enabled the emailVerification entry in my config/fortify.php configuration file and I added the MustVerifyEmail to my User model. When I register a user, the app send me the email with the link however the link seems not working. It redirects ..
I am developing an application with Laravel 8 and I ran into a very strange behaviour. I have a Model called "Organisation", this Organisation has many Users (Model from Jetstream). I did the relationship as usual: In Organisation Model: public function users() { return $this->hasMany(User::class); } In User Model: public function organisation() { return $this->belongsTo(Organisation::class); ..
I’m trying to add element to user profile form, there is no problem in the registration form but I don’t know how to add it in user profile update page <div class="col-span-6 sm:col-span-4"> <x-jet-label for="name" value="{{ __(‘Name’) }}" /> <x-jet-input id="name" type="text" class="mt-1 block w-full" wire:model.defer="state.name" autocomplete="name" /> <x-jet-input-error for="name" class="mt-2" /> </div> <!– Email ..
We’re using the latest version of Laravel with Laravel Jetstream and want to implement a functionality to allow our admins to sign in on behalf of a regular user. This allows us to provide a better support if some users encounter problems with their accounts. This function seems perfect to achieve the intended result: Auth::loginUsingId(1); ..
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? I wish i could upload an ..
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? I wish i could upload an ..
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 to run the wrong function. When I click ..
If I already have an existing Laravel Jetstream (Inertia) project which was installed without the –teams option is there a way to go back and install support for teams given that I have already created multiple controllers, models, migrations and other customizations within the app? Sourc..
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 : https://curationprojet.roberts.etu.mmi-unistra.fr/caracara/public/login The welcome page is normal, just ..
I am creating a Single Page Application using Laravel 8, Vue and Sanctum for API. If I use Jetstream for authentication there is compulsory to use another js Inertia. and according to documentation its saying "you will use Laravel’s router instead of Vue router." Can I use Jetstream without the inertia or without laravel router? ..
I can’t install jetream to my laravel project. when I do the command. composer require laravel / jetstream it will generate [InvalidArgumentException] The laravel / jetstream package has a PHP requirement incompatible with your PHP version, PHP extensions and Composer version my php version is 7.2.24, and my composer version is 2.0.8 Sourc..
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 your PHP version, PHP extensions and Composer version My PHP version is 7.2.24, and my Composer version is 2.0.8. ..
I am trying to incorporate the instructions in : https://webmobtuts.com/backend-development/lets-implement-a-simple-ticketing-system-with-laravel/ with Laravel Jetstream + livewire. I love the Jetstream interface, and I’m wondering if anyone has any tips or instructions on how to incorporate this very same (or similar) ticketing system in Laravel 8 Jetstream. I thought about keeping the database structure, and using artisan ..
I’m a bit stuck right now. I want to create an export using Maatwerk Laravel-Excel. The user must be able to set some filters. In Vue I will set the selected values when selected. When the button is pressed the user must receive the download. In Vue: data() { return { selected: { manufacturers: [], ..
i am using laravel fortify and jetstream for user profiles . now when i active the profile photo in setting when i want to enter a photo for my profile i get this error below : The photo must be an image. when i check the console for error i find this : Uncaught TypeError: ..
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 composer require laravel/breeze –dev to get the Authenticate part it works fine. after that, it says to run "npm install && npm run dev" Then I ..