getFirstMedia('receipts'); if ($media) { $imagePath = $media->getPath(); $response = \Response::download($imagePath, $media->file_name); ob_end_clean(); return $response; } } return response()->json([ 'error' => 'receipt_not_found', ]); } }