exists($document->file_path)) { abort(404, 'Document file not found.'); } // Stream the file to the browser return Storage::disk('public')->download( $document->file_path, $document->original_filename, [ 'Content-Type' => $document->mime_type, 'Content-Disposition' => 'inline; filename="' . $document->original_filename . '"', ] ); } }