remove class name from icon name

This commit is contained in:
Chris 2018-10-29 15:24:47 +00:00
parent 2507cda94c
commit af04781830

View file

@ -103,7 +103,7 @@ abstract class SupportedApps
public static function saveApp($details, $app) public static function saveApp($details, $app)
{ {
$img_src = app_path('SupportedApps/'.className($details->name).'/'.$details->icon); $img_src = app_path('SupportedApps/'.className($details->name).'/'.$details->icon);
$img_dest = public_path('storage/supportedapps/'.className($details->icon)); $img_dest = public_path('storage/supportedapps/'.$details->icon);
//die("i: ".$img_src); //die("i: ".$img_src);
copy($img_src, $img_dest); copy($img_src, $img_dest);