Route::get('/ping', function() { return 'pong'; }); Route::get('/check-storage', function() { $logPath = storage_path('logs/laravel.log'); return [ 'storage_path' => storage_path(), 'logs_writable' => is_writable(storage_path('logs')), 'laravel_log_exists' => file_exists($logPath), 'laravel_log_size' => file_exists($logPath) ? filesize($logPath) : 0, ]; });