App\Models\Forum\ForumCover::updateFile PHP 메소드

updateFile() 공개 메소드

public updateFile ( $filePath, $user )
    public function updateFile($filePath, $user)
    {
        $this->user()->associate($user);
        $this->storeFile($filePath);
        $this->save();
        return $this->fresh();
    }