芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/yeahea.digitalhubbd.com/app/Observers/ShopObserver.php
owner_id); // $user->shop_id = $shop->id; // $user->save(); // $user->notify(new ShopCreated($shop)); } /** * Listen to the Shop deleting event. * * @param \App\Models\Shop $shop * @return void */ public function deleting(Shop $shop) { $shop->owner()->delete(); $shop->staffs()->delete(); } /** * Listen to the Shop restored event. * * @param \App\Models\Shop $shop * @return void */ public function restored(Shop $shop) { $shop->owner()->restore(); $shop->staffs()->restore(); } }