// routes/web.php में ये Route डालें Route::get('/serve-image/{path}', function($path) { // Try multiple paths $paths = [ storage_path('app/public/' . $path), storage_path('app/public/news/' . $path), public_path('storage/' . $path), public_path('storage/news/' . $path), storage_path('app/public/news/2026/03/' . basename($path)) ]; foreach ($paths as $fullPath) { if (file_exists($fullPath)) { $mime = mime_content_type($fullPath); return response()->file($fullPath, ['Content-Type' => $mime]); } } // Default image if not found $defaultPath = public_path('images/default-news.jpg'); if (file_exists($defaultPath)) { return response()->file($defaultPath); } abort(404, 'Image not found'); })->where('path', '.*'); Crime - द पब्लिक एक्सप्रेस
🏠 होम
🏆 लीडरबोर्ड 📝 रिपोर्टर लॉगिन
द प

द पब्लिक एक्सप्रेस

Crime की खबरें

← होम