'datetime', ]; public function Staff() { $staff = Staff::where('user_id', $this->id)->first(); return $staff; } public function inventory() { return $this->morphMany('App\Models\Inventory', 'owner'); } }