morphMany(Actionlog::class, 'item'); } /** * @author Daniel Meltzer item_type = License::class; $log->item_id = $this->license_id; } else { $log->item_type = static::class; $log->item_id = $this->id; } $log->user_id = Auth::user()->id; if (!is_null($this->asset_id) || isset($target)) { $log->target_type = Asset::class; $log->target_id = $this->asset_id; } else if (!is_null($this->assigned_to)) { $log->target_type = User::class; $log->target_id = $this->assigned_to; } $item = call_user_func(array($log->target_type, 'find'), $log->target_id); $log->location_id = $item->location_id; $log->note = $note; $log->logaction('checkout'); return $log; } /** * @author Daniel Meltzer item_type = License::class; $log->item_id = $this->license_id; } else { $log->item_type = static::class; $log->item_id = $this->id; } $log->location_id = null; $log->note = $note; $log->user_id = Auth::user()->id; $log->logaction('checkin from'); return $log; } /** * @author Daniel Meltzer id; } $log = new Actionlog; if (static::class == LicenseSeat::class) { $log->item_type = License::class; $log->item_id = $this->license_id; } else { $log->item_type = static::class; $log->item_id = $this->id; } $log->location_id = null; $log->note = $note; $log->user_id = $user_id; $log->logaction('created'); $log->save(); return $log; } /** * @author Daniel Meltzer item_type = License::class; $log->item_id = $this->license_id; } else { $log->item_type = static::class; $log->item_id = $this->id; } $log->user_id = Auth::user()->id; $log->note = $note; $log->target_id = null; $log->created_at = date("Y-m-d h:i:s"); $log->filename = $filename; $log->logaction('uploaded'); return $log; } }