2019-04-19 11:09:55 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-04-19 11:09:55 +02:00
|
|
|
|
|
|
|
namespace App\Observers;
|
|
|
|
|
|
|
|
use App\Models\Product;
|
|
|
|
|
|
|
|
class ProductObserver
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Handle the product "created" event.
|
|
|
|
*
|
|
|
|
* @param \App\Models\Product $product
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function created(Product $product)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the product "updated" event.
|
|
|
|
*
|
|
|
|
* @param \App\Models\Product $product
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function updated(Product $product)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the product "deleted" event.
|
|
|
|
*
|
|
|
|
* @param \App\Models\Product $product
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function deleted(Product $product)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the product "restored" event.
|
|
|
|
*
|
|
|
|
* @param \App\Models\Product $product
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function restored(Product $product)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the product "force deleted" event.
|
|
|
|
*
|
|
|
|
* @param \App\Models\Product $product
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function forceDeleted(Product $product)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
}
|