forked from a1gard/xshop
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
440 B
PHP
22 lines
440 B
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Models\Price;
|
|
use App\Models\Product;
|
|
|
|
class ProductObserver
|
|
{
|
|
//
|
|
public function updated(Product $product){
|
|
\Log::info('product update');
|
|
if ($product->wasChanged('price')){
|
|
\Log::info('product price update');
|
|
$p = new Price();
|
|
$p->product_id = $product->id;
|
|
$p->price = $product->price;
|
|
$p->save();
|
|
}
|
|
}
|
|
}
|