Open
Description
Terms
- Before you openning this issue, i have checked if the issue has already been reported.
Bagisto Version(s) affected
v2.3.x-dev
Issue Description
packages/Webkul/Theme/src/Repositories/ThemeCustomizationRepository.php
Line 110
'image' => 'storage/'.$path,
Preconditions
PHP 8.4.8
Laravel 11.44.2
Steps to reproduce
- Enable S3 Disk Storage
- Open http://127.0.0.1:8000/admin/settings/themes/edit/1
- Add Carousel Image
- See error the storage path is not correct because hardcoded storage not Storage::url
Expected Result
The image path should get update according to filesystem disk.
Actual Result
Solution
'image' => Storage::url($path),
Screenshots
No response
Additional context
No response