Hi, I'm using the Inertia and Laravel markdown package on my project. Locally it's working perfectly. But the problem is when I'm up on the server Markdown's style is breaking. this screenshot for my...
I have a problem in Livewire 2 when the modal close the page is disabled, ```php public function submit() { $this->validate(); $this->emit('success', __('New user created')); $this->reset(); }...
Hello, Losing my sanity here with a simple issue. It only happens when there are validation errors. Any ideas? Tried all of the alignment utilities for both Grid and Flexbox. [Image](https://i.imgu...
This was a great course and just what I was looking for to put together a Static site, looking at trying to extend this so that once I am viewing a post, i can move to the next, or previous. Anyone h...
Hey everyone, Have you guys tried using different app layouts in one Inertia + Vue app? Let's say, for the back office (admin) we'll use `admin.blade.php` instead of the default `app.blade.php` And...
Hi Guys, I need a guidance if someone could help me to make logic for nested v-model. I'm using vue-multiselect in vue 3 and vite. I've attached 2 images, I've explained on the image what logic I wan...
Hello there, I have a use case, where my laravel application, has a landlord (central domain) and the landlord can onboard tenants and each tenant onboarded by the landlord can also onboard other tena...
i am working on a project using Laravel Nova, this is the issue i am facing and can't figure it out why Enlightn is still failing: in **NovaServiceProvider** in **boot()** method i have ``` /** @v...
Hi everyone, I’m using Laravel Sail in a Github Codespace. I have followed the instructions to install Laravel (https://laravel.com/docs/10.x/installation). Github Codespaces has generated this pub...
Hi Alex, I would appreciate it if you make a tutorial about Laravel Nova or Filament administration panel. Or both... 😉 It might be interesting to apply them to one of your projects here.
Prepare to have your brain melted. [Image](https://i.imgur.com/IpeAwCV.png) Let's dive into the code... **InvoiceItem**: ```php public function total($includeVat = false): int|float {...
I have multiple layouts in my Inertia app, `Layout-Guest` and `Layout-Main`. Both use `app.blade.php`. I grab a Sign-in component from TailwindUI but it requires updating the `<html>` and `<body>` ta...
Hello, I have grabbed the infinite scroll logic from Codecourse's Github and made a little component out of it, but I am facing an issue where it breaks the page when trying to navigate to another pa...
Hey all, I've no doubt there is an obvious conflict that I am missing here but I've been googling and researching for a couple of days now and cannot seem to resolve this issue. I've created a sear...
I installed `Jetstream` and used the `Inertia` scaffolding. It's working fine, I'm able to add custom fields in the `Profile` information. However, when I change the currently logged-in user's passwo...
Hi folks, I was just wondering if you can help guide me to the best tutorial to learn what's needed to build a job board with filters..etc I want to build this with Inertia. My approach is that I w...
Hello, I am running into a strange issue with a failing test. Error: ``` Unable to find a file or directory at path ``` The test: (I have slimmed it down) ``` test('a PDF is generated when an in...
Just curious about this one. When you want to pass data that you want to be globally available in your Inertia Vue app, is it a good practice to pass it in `HandleInertiaRequests` middleware? If we...