I have a form where I upload images using Laravel Livewire.
In my class I can save the files in original size using:
$filenames = collect($this->photos)->map->store('posts');
The issue that I faced is that I don't know how to save the same images (with same name as above) in another folder (thumbnail folder) in another size. For instance, width 200px.