Laravel
Hi Alex,
I’ve noticed here on codecourse you manage subscription invoices using quaderno, I believe it is useful for tax purposes. Any plan to make a video and add it to your subscription course on how implement quaderno with stripe and Laravel cashier?
Many thanks
Vincenzo
Laravel
Hi Alex,
I'm following your new course on Laravel subscriptions with Stripe, I've got a problem with setting webhooks in my appliction. I've installed the package Tenancy for laravel for multi tenant application, each tenant has his own database and subdomain, how can I set up webhooks?
Many than...
Livewire
Hi,
I’m encountering an issue while using the Laravel Spatie Wizard package along with Select2. The Select2 component works fine on the initial step, but when I move to step 2 and then return to the first step, Select2 doesn’t render correctly. Instead, the <select> field appears as a default HTML...
Hello Alex, you upload your videos to vimeo and cannot access these videos from the browser directly. For example we cannot access https://player.vimeo.com/video/1010746273?title=0&byline=0&autoplay=1&dnt=1&app_id=122963 directly.
But when we are a member of your system, we can view the videos. Can...
Hello!
I have a Livewire 3 project where I use simple lightbox js plugin <script src="fslightbox.js"> </script> added before end of the <body> tag. I also have simple filtering on this page and everything works fine when the page is first loaded and after first component update, but stops working a...
Laravel
anyone know if theres a course that provides example of using cache lock or pessimistic locking? googling doesnt seem to have any realworld examples on how to use this..

Posted by edgelessmorphine
8 months ago. Last reply
8 months ago.
Hello Alex, I've been following the Laravel Subscriptions course and it has helped me a lot getting around stripe's dashboard!
I was wondering how you would approach lifetime subscriptions or similar. It seems like you can make one of charges as prices in stripe but how does this look like with the...

Posted by alejandro627
8 months ago. Last reply
8 months ago.
I have this error when just install pinia to nuxt 3
```
ERROR [nuxt] [request error] [unhandled] [500] Cannot find package '@vue/composition-api' imported from C:\Users\Aal-Naib\node_modules\vue-demi\lib\index.mjs
at __node_internal_captureLargerStackTrace (node:internal/errors:490:5)
at ne...
Laravel
how to add custom rate limiter using id to secure login registration
in livewire
here my code
```php
<?php
namespace App\Livewire;
use Livewire\Component;
use App\Models\User;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Facades\Mail;
use App\Jobs\SendOtpEmailJob;
use Illuminat...

Posted by wees377
8 months ago.
The problem I'm facing is that when I click on a search result link, the page refreshes instead of navigating within the SPA. I want to prevent the page from reloading and use Nuxt's router to navigate programmatically.
```
item({ item, html }) {
return html`
<a href="${item.url}" class="flex...