mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
16 lines
286 B
PHP
16 lines
286 B
PHP
<?php
|
|
|
|
namespace App\Classes\Service\Files;
|
|
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
class DeleteFile
|
|
{
|
|
public function execute(string $path, array $files = []): void {
|
|
|
|
foreach ($files as $file){
|
|
Storage::disk('public')->delete($path.$file);
|
|
}
|
|
|
|
}
|
|
} |