1
ルーメンAPIを使用してブラウザに表示されていない、コントローラの私のコードは次のとおりです。画像私は、ブラウザ内の画像やショーを取得するためにルーメンを使用
use Illuminate\Support\Facades\File;
$photo = $this->uploadFile->get_by_photo($photo, ['filename']);
$path = storage_path('app') . '/' . $photo[0]['filename'];
$file = File::get($path);
$type = File::mimeType($path);
$response = response()->make($file, 200);
$response->header("Content-Type", $type);
return $response;
しかし、画像がブラウザに表示されていない、私はちょうどその時、実行暗いページを得ましたそのAPI
は友人を助けてください – amirali