Erster Upload

This commit is contained in:
Malek Tellissi
2026-09-11 01:17:47 +02:00
commit 400172cdde
171 changed files with 18844 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
<?php
namespace App\Observers;
use App\Models\Product;
class ProductObserver
{
/**
* Handle the Product "created" event.
*/
public function created(Product $product): void
{
}
/**
* Handle the Product "updated" event.
*/
public function updated(Product $product): void
{
//
}
/**
* Handle the Product "deleted" event.
*/
public function deleted(Product $product): void
{
//
}
/**
* Handle the Product "restored" event.
*/
public function restored(Product $product): void
{
//
}
/**
* Handle the Product "force deleted" event.
*/
public function forceDeleted(Product $product): void
{
//
}
}