item_type = Consumable::class; $logAction->item_id = $consumable->id; $logAction->created_at = date("Y-m-d H:i:s"); $logAction->user_id = Auth::id(); $logAction->logaction('update'); } /** * Listen to the Consumable created event, and increment * the next_auto_tag_base value in the settings table when i * a new consumable is created. * * @param Consumable $consumable * @return void */ public function created(Consumable $consumable) { $settings = Setting::first(); $settings->increment('next_auto_tag_base'); $logAction = new Actionlog(); $logAction->item_type = Consumable::class; $logAction->item_id = $consumable->id; $logAction->created_at = date("Y-m-d H:i:s"); $logAction->user_id = Auth::id(); $logAction->logaction('create'); } /** * Listen to the Consumable deleting event. * * @param Consumable $consumable * @return void */ public function deleting(Consumable $consumable) { $logAction = new Actionlog(); $logAction->item_type = Consumable::class; $logAction->item_id = $consumable->id; $logAction->created_at = date("Y-m-d H:i:s"); $logAction->user_id = Auth::id(); $logAction->logaction('delete'); } }