Add backend check for due invoices, #54

This commit is contained in:
2025-11-11 21:20:15 +01:00
parent b81c6d71f4
commit c682d0caf6
15 changed files with 112 additions and 23 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
protected $listen = [
'Illuminate\Routing\Events\RouteMatched' => [
\App\Listeners\CheckInvoiceDueDatesListener::class,
],
];
/**
* Bootstrap services.
*/
public function boot(): void
{
parent::boot();
}
}