Superluk - 2017-04-03 12:53:26
$zip->make(“file.zip”)->add(“/file”); // --->>> should be: add("file/");
$zip->exctract(“file.zip”)->to(“/files”); // --->>> should be: extract (not: exctract)
$zip->exctract(“file.zip”)->only([“home.jpg”,”index.jpg”])->to(“/files”); // extract onlye mutli files from file.zip to /files --->>> the same: extract
Also change the quotes to " ;-)