Plank\Mediable\Media::move PHP Method

move() public method

Will invoke the save() method on the model after the associated file has been moved to prevent synchronization errors
public move ( string $destination, string $filename = null ) : void
$destination string directory relative to disk root
$filename string filename. Do not include extension
return void
    public function move($destination, $filename = null)
    {
        app('mediable.mover')->move($this, $destination, $filename);
    }