This commit is contained in:
2024-06-01 03:10:30 +02:00
parent 1d41dea9fa
commit 26551964b1
25 changed files with 1808 additions and 341 deletions

View File

@@ -39,7 +39,7 @@ class ImageController extends Controller
*/
public function show(Image $image) : BinaryFileResponse
{
return response()->file(Storage::disk('images')->path($image->album->id . '/original/' . $image->id));
return response()->file(Storage::disk('images')->path($image->album->id . '/thumbnail/' . $image->id . '.avif'));
}
/**