laravel delete file code example
Example 1: laravel storage hard link
php artisan storage:link
Example 2: unlink is a directory laravel
$destinationPath = 'your_path';
File::delete($destinationPath.'/your_file');
php artisan storage:link
$destinationPath = 'your_path';
File::delete($destinationPath.'/your_file');