如何使用 laravel 8 将图像作为 Blob 文件存储在数据库中?

How can I store the images as Blob file in database using laravel 8?

我想将我的图像作为 blob 存储在数据库中。不作为文件路径。我怎样才能做到这一点?我使用 Laravel .

这可能会完成工作。

$path = $request->file('file')->getRealPath();    
$logo = file_get_contents($path);
$base64 = base64_encode($logo);
$account->logo = $base64;
$account->save();

Source