Spatie\Browsershot\Exceptions\CouldNotTakeBrowsershot
The given path F:\xampp\htdocs\testcover\public/uploads/ did not contain an extension. Please append an extension
I received this error when trying to save an HTML file as an Image file using Spatie BrowerShot. How can it be fixed. Thanks everyone
You are mixing windows paths with \ as the separator with linuxs / separator, add your path to the public_path() call and it should work as intended.
$destination = public_path('uploads');