Answers for "how to remove image from public storage in laravel"

PHP
0

how to remove image from public storage in laravel

// import Storage class
use Illuminate\Support\Facades\Storage;

Storage::disk('public')->delete('path-of-file');
Posted by: Guest on February-27-2022

Code answers related to "how to remove image from public storage in laravel"

Browse Popular Code Answers by Language