A Laravel(File) - user000422/0 GitHub Wiki

■ダウンロード

public function sample(string $filePath)
{
    $filePath = storage_path($filePath);

    // バッファが開始されているか確認
    while (ob_get_level() > 0) {
        // バッファを削除
        ob_end_clean();
    }

    return response()->file($filePath);
}